From 0616257177747a02b6863928b6c817156717fd39 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 26 Jan 2025 10:16:49 -0500 Subject: [PATCH] feat: Testing just installing just with apt, not using action --- .gitea/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5e1cf2f..adb8272 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,8 +10,20 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 + - name: Update + run: apt-get update && apt-get install -y wget gpg sudo bash + - name: Setup MPR. + shell: bash + run: | + wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' \ + | gpg --dearmor \ + | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null \ + && echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] \ + https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" \ + | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list \ + && sudo apt-get update - name: Setup just. - run: sudo apt install -y just + run: sudo apt-get install -y just # - name: Setup just. # uses: https://git.housh.dev/actions/setup-just.git@v1.1 - name: Setup QEMU