diff options
author | Vollstrecker <werner@vollstreckernet.de> | 2024-12-25 09:56:21 +0100 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2025-01-31 19:59:10 -0800 |
commit | c9467bd5f8864d67769c709193f47937aa8b0234 (patch) | |
tree | 301acf3e974429793a024fde06fec5b103a9db8c /.github | |
parent | c7e9d282e7a92e881bf26972c7c167428dabf453 (diff) | |
download | zlib-c9467bd5f8864d67769c709193f47937aa8b0234.tar.gz zlib-c9467bd5f8864d67769c709193f47937aa8b0234.tar.bz2 zlib-c9467bd5f8864d67769c709193f47937aa8b0234.zip |
Correct QEMU package name to qemu-system in workflow.
As in Ubuntu 24.04.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/configure.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index 7789095..857a188 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml | |||
@@ -26,7 +26,7 @@ jobs: | |||
26 | compiler: arm-linux-gnueabi-gcc | 26 | compiler: arm-linux-gnueabi-gcc |
27 | configure-args: --warn | 27 | configure-args: --warn |
28 | chost: arm-linux-gnueabi | 28 | chost: arm-linux-gnueabi |
29 | packages: qemu qemu-user gcc-arm-linux-gnueabi libc-dev-armel-cross | 29 | packages: qemu-system qemu-user gcc-arm-linux-gnueabi libc-dev-armel-cross |
30 | qemu-run: qemu-arm -L /usr/arm-linux-gnueabi | 30 | qemu-run: qemu-arm -L /usr/arm-linux-gnueabi |
31 | 31 | ||
32 | - name: Ubuntu GCC ARM HF | 32 | - name: Ubuntu GCC ARM HF |
@@ -34,7 +34,7 @@ jobs: | |||
34 | compiler: arm-linux-gnueabihf-gcc | 34 | compiler: arm-linux-gnueabihf-gcc |
35 | configure-args: --warn | 35 | configure-args: --warn |
36 | chost: arm-linux-gnueabihf | 36 | chost: arm-linux-gnueabihf |
37 | packages: qemu qemu-user gcc-arm-linux-gnueabihf libc-dev-armhf-cross | 37 | packages: qemu-system qemu-user gcc-arm-linux-gnueabihf libc-dev-armhf-cross |
38 | qemu-run: qemu-arm -L /usr/arm-linux-gnueabihf | 38 | qemu-run: qemu-arm -L /usr/arm-linux-gnueabihf |
39 | 39 | ||
40 | - name: Ubuntu GCC AARCH64 | 40 | - name: Ubuntu GCC AARCH64 |
@@ -42,7 +42,7 @@ jobs: | |||
42 | compiler: aarch64-linux-gnu-gcc | 42 | compiler: aarch64-linux-gnu-gcc |
43 | configure-args: --warn | 43 | configure-args: --warn |
44 | chost: aarch64-linux-gnu | 44 | chost: aarch64-linux-gnu |
45 | packages: qemu qemu-user gcc-aarch64-linux-gnu libc-dev-arm64-cross | 45 | packages: qemu-system qemu-user gcc-aarch64-linux-gnu libc-dev-arm64-cross |
46 | qemu-run: qemu-aarch64 -L /usr/aarch64-linux-gnu | 46 | qemu-run: qemu-aarch64 -L /usr/aarch64-linux-gnu |
47 | 47 | ||
48 | - name: Ubuntu GCC PPC | 48 | - name: Ubuntu GCC PPC |
@@ -50,7 +50,7 @@ jobs: | |||
50 | compiler: powerpc-linux-gnu-gcc | 50 | compiler: powerpc-linux-gnu-gcc |
51 | configure-args: --warn --static | 51 | configure-args: --warn --static |
52 | chost: powerpc-linux-gnu | 52 | chost: powerpc-linux-gnu |
53 | packages: qemu qemu-user gcc-powerpc-linux-gnu libc-dev-powerpc-cross | 53 | packages: qemu-system qemu-user gcc-powerpc-linux-gnu libc-dev-powerpc-cross |
54 | qemu-run: qemu-ppc -L /usr/powerpc-linux-gnu | 54 | qemu-run: qemu-ppc -L /usr/powerpc-linux-gnu |
55 | cflags: -static | 55 | cflags: -static |
56 | ldflags: -static | 56 | ldflags: -static |
@@ -60,7 +60,7 @@ jobs: | |||
60 | compiler: powerpc64-linux-gnu-gcc | 60 | compiler: powerpc64-linux-gnu-gcc |
61 | configure-args: --warn --static | 61 | configure-args: --warn --static |
62 | chost: powerpc-linux-gnu | 62 | chost: powerpc-linux-gnu |
63 | packages: qemu qemu-user gcc-powerpc64-linux-gnu libc-dev-ppc64-cross | 63 | packages: qemu-system qemu-user gcc-powerpc64-linux-gnu libc-dev-ppc64-cross |
64 | qemu-run: qemu-ppc64 -L /usr/powerpc64-linux-gnu | 64 | qemu-run: qemu-ppc64 -L /usr/powerpc64-linux-gnu |
65 | cflags: -static | 65 | cflags: -static |
66 | ldflags: -static | 66 | ldflags: -static |
@@ -70,7 +70,7 @@ jobs: | |||
70 | compiler: powerpc64le-linux-gnu-gcc | 70 | compiler: powerpc64le-linux-gnu-gcc |
71 | configure-args: --warn | 71 | configure-args: --warn |
72 | chost: powerpc64le-linux-gnu | 72 | chost: powerpc64le-linux-gnu |
73 | packages: qemu qemu-user gcc-powerpc64le-linux-gnu libc-dev-ppc64el-cross | 73 | packages: qemu-system qemu-user gcc-powerpc64le-linux-gnu libc-dev-ppc64el-cross |
74 | qemu-run: qemu-ppc64le -L /usr/powerpc64le-linux-gnu | 74 | qemu-run: qemu-ppc64le -L /usr/powerpc64le-linux-gnu |
75 | 75 | ||
76 | - name: Ubuntu GCC S390X | 76 | - name: Ubuntu GCC S390X |
@@ -78,7 +78,7 @@ jobs: | |||
78 | compiler: s390x-linux-gnu-gcc | 78 | compiler: s390x-linux-gnu-gcc |
79 | configure-args: --warn --static | 79 | configure-args: --warn --static |
80 | chost: s390x-linux-gnu | 80 | chost: s390x-linux-gnu |
81 | packages: qemu qemu-user gcc-s390x-linux-gnu libc-dev-s390x-cross | 81 | packages: qemu-system qemu-user gcc-s390x-linux-gnu libc-dev-s390x-cross |
82 | qemu-run: qemu-s390x -L /usr/s390x-linux-gnu | 82 | qemu-run: qemu-s390x -L /usr/s390x-linux-gnu |
83 | cflags: -static | 83 | cflags: -static |
84 | ldflags: -static | 84 | ldflags: -static |