Skip to content

Commit

Permalink
Run test-app CI job on Ubuntu (not Debian container)
Browse files Browse the repository at this point in the history
Zig builds fail for some reason and perhaps it's related to running in a
container?
  • Loading branch information
plajjan committed Nov 4, 2024
1 parent a06719e commit 81b16ac
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,15 @@ on:
jobs:
test-app:
runs-on: ubuntu-latest
container:
image: debian:experimental
steps:
- name: "Download .deb files"
uses: actions/download-artifact@v3
with:
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
Expand Down

0 comments on commit 81b16ac

Please sign in to comment.