Skip to content

Commit 1f94923

Browse files
committed
CI: Specify Ubuntu 24.04 for run-on-arch-action
The upstream Run-On-Arch GitHub Action [1] finally supports Ubuntu 24.04, and it is time to unify the Ubuntu image version. [1] https://github.com/uraimo/run-on-arch-action
1 parent 45e91a8 commit 1f94923

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/main.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,14 @@ jobs:
3232
- name: build artifact
3333
# The GitHub Action for non-x86 CPU
3434
# https://github.com/uraimo/run-on-arch-action
35-
uses: uraimo/run-on-arch-action@v2
35+
uses: uraimo/run-on-arch-action@v3
3636
with:
37-
arch: none
38-
distro: none
39-
base_image: "--platform=linux/arm/v7 arm32v7/ubuntu:22.04"
37+
arch: armv7
38+
distro: ubuntu24.04
4039
githubToken: ${{ github.token }}
4140
install: |
42-
apt-get update -q -y
43-
apt-get install -q -y build-essential
41+
apt-get update -qq -y
42+
apt-get install -yqq build-essential
4443
run: |
4544
make config ARCH=arm
4645
make check || exit 1

0 commit comments

Comments
 (0)