Skip to content

Commit 1758a92

Browse files
committed
Merge #950: ci: Add ppc64le build
c58c4ea ci: Add ppc64le build (Tim Ruffing) Pull request description: ACKs for top commit: sipa: ACK c58c4ea jonasnick: ACK c58c4ea Tree-SHA512: 8f58783d07b34241619051c8375749699b1bd447de56541b3aea3d2e9546c6eb22fbcae55ad57bff614b8c3455933d74031162d00e5eabe6d1d55d56b4aaca16
2 parents 7973576 + c58c4ea commit 1758a92

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.cirrus.yml

+21
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,27 @@ task:
224224
- ./ci/cirrus.sh
225225
<< : *CAT_LOGS
226226

227+
task:
228+
name: "ppc64le: Linux (Debian stable, QEMU)"
229+
container:
230+
dockerfile: ci/linux-debian.Dockerfile
231+
cpu: 1
232+
memory: 1G
233+
env:
234+
WRAPPER_CMD: qemu-ppc64le
235+
TEST_ITERS: 16
236+
HOST: powerpc64le-linux-gnu
237+
WITH_VALGRIND: no
238+
ECDH: yes
239+
RECOVERY: yes
240+
EXPERIMENTAL: yes
241+
SCHNORRSIG: yes
242+
CTIMETEST: no
243+
<< : *MERGE_BASE
244+
test_script:
245+
- ./ci/cirrus.sh
246+
<< : *CAT_LOGS
247+
227248
task:
228249
name: "x86_64 (mingw32-w64): Windows (Debian stable, Wine)"
229250
container:

ci/linux-debian.Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ RUN dpkg --add-architecture i386
44
RUN dpkg --add-architecture s390x
55
RUN dpkg --add-architecture armhf
66
RUN dpkg --add-architecture arm64
7+
RUN dpkg --add-architecture ppc64el
78
RUN apt-get update
89

910
# dkpg-dev: to make pkg-config work in cross-builds
@@ -16,6 +17,7 @@ RUN apt-get install --no-install-recommends --no-upgrade -y \
1617
gcc-s390x-linux-gnu libc6-dev-s390x-cross libc6-dbg:s390x \
1718
gcc-arm-linux-gnueabihf libc6-dev-armhf-cross libc6-dbg:armhf \
1819
gcc-aarch64-linux-gnu libc6-dev-arm64-cross libc6-dbg:arm64 \
20+
gcc-powerpc64le-linux-gnu libc6-dev-ppc64el-cross libc6-dbg:ppc64el \
1921
wine gcc-mingw-w64-x86-64
2022

2123
# Run a dummy command in wine to make it set up configuration

0 commit comments

Comments
 (0)