Skip to content

Commit

Permalink
Support ubuntu 24.04 image
Browse files Browse the repository at this point in the history
Package qemu no longer exists, but only qemu-user-static was required

Signed-off-by: Paul Guyot <[email protected]>
  • Loading branch information
pguyot committed May 30, 2024
1 parent a9ec464 commit 9eb6797
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/test-runner-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test runner images
on:
push:
branches:
- 'main'
- 'releases/**'
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
runner: ["ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04", "ubuntu-latest"]
steps:
- uses: actions/checkout@v4
- uses: ./ # pguyot/arm-runner-action@HEAD
with:
commands: |
test `uname -m` = 'armv6l'
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ runs:
steps:
- name: Install dependencies
run:
sudo apt-get update && sudo apt-get install -y qemu qemu-user-static binfmt-support parted wget dosfstools zip
sudo apt-get update && sudo apt-get install -y qemu-user-static binfmt-support parted wget dosfstools zip
shell: bash
- name: Install qemu wrapper
shell: bash
Expand Down

0 comments on commit 9eb6797

Please sign in to comment.