We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45e91a8 commit 1f94923Copy full SHA for 1f94923
.github/workflows/main.yml
@@ -32,15 +32,14 @@ jobs:
32
- name: build artifact
33
# The GitHub Action for non-x86 CPU
34
# https://github.com/uraimo/run-on-arch-action
35
- uses: uraimo/run-on-arch-action@v2
+ uses: uraimo/run-on-arch-action@v3
36
with:
37
- arch: none
38
- distro: none
39
- base_image: "--platform=linux/arm/v7 arm32v7/ubuntu:22.04"
+ arch: armv7
+ distro: ubuntu24.04
40
githubToken: ${{ github.token }}
41
install: |
42
- apt-get update -q -y
43
- apt-get install -q -y build-essential
+ apt-get update -qq -y
+ apt-get install -yqq build-essential
44
run: |
45
make config ARCH=arm
46
make check || exit 1
0 commit comments