File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 7
7
strategy :
8
8
fail-fast : false
9
9
matrix :
10
- ARCH : [x86_64, i686, aarch64, armhf]
10
+ include :
11
+ - ARCH : x86_64
12
+ RUNS_ON : ubuntu-24.04
13
+ - ARCH : i686
14
+ RUNS_ON : ubuntu-24.04
15
+ - ARCH : aarch64
16
+ RUNS_ON : ubuntu-24.04-arm
17
+ - ARCH : armhf
18
+ RUNS_ON : ubuntu-24.04-arm
11
19
12
20
name : AppImage ${{ matrix.ARCH }}
13
- runs-on : ubuntu-latest
21
+ runs-on : ${{ matrix.RUNS_ON }}
14
22
env :
15
23
ARCH : ${{ matrix.ARCH }}
16
24
DIST : bionic
17
25
steps :
18
26
- uses : actions/checkout@v4
19
27
with :
20
28
submodules : recursive
21
- - name : Set up QEMU integration for Docker
22
- run : docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
23
29
- name : Build AppImage in Docker
24
30
run : bash -ex ci/build-in-docker.sh
25
31
- name : Archive artifacts
35
41
name : Create release and upload artifacts
36
42
needs :
37
43
- appimage-build
38
- runs-on : ubuntu-20 .04
44
+ runs-on : ubuntu-24 .04
39
45
steps :
40
46
- name : Download artifacts
41
47
uses : actions/download-artifact@v4
You can’t perform that action at this time.
0 commit comments