From 81b16ac19e4cc9297757bce2df73f1aeda423a21 Mon Sep 17 00:00:00 2001 From: Kristian Larsson Date: Mon, 4 Nov 2024 09:02:32 +0100 Subject: [PATCH] Run test-app CI job on Ubuntu (not Debian container) Zig builds fail for some reason and perhaps it's related to running in a container? --- .github/workflows/test-app.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-app.yml b/.github/workflows/test-app.yml index 44ed967e7..649f632f2 100644 --- a/.github/workflows/test-app.yml +++ b/.github/workflows/test-app.yml @@ -8,8 +8,6 @@ on: jobs: test-app: runs-on: ubuntu-latest - container: - image: debian:experimental steps: - name: "Download .deb files" uses: actions/download-artifact@v3 @@ -17,8 +15,8 @@ jobs: name: acton-debs - name: "Install acton from .deb" run: | - apt update - apt install -y ./deb/acton_*.deb + sudo apt update + sudo apt install -y ./deb/acton_*.deb acton --version - name: "Clone app repo" uses: actions/checkout@v4