File tree Expand file tree Collapse file tree 2 files changed +47
-17
lines changed Expand file tree Collapse file tree 2 files changed +47
-17
lines changed Original file line number Diff line number Diff line change @@ -64,23 +64,6 @@ linux_container_snippet: &LINUX_CONTAINER
6464 # More than enough for our scripts.
6565 memory : 2G
6666
67- task :
68- name : " ppc64le: Linux (Debian stable, QEMU)"
69- << : *LINUX_CONTAINER
70- env :
71- WRAPPER_CMD : qemu-ppc64le
72- SECP256K1_TEST_ITERS : 16
73- HOST : powerpc64le-linux-gnu
74- WITH_VALGRIND : no
75- ECDH : yes
76- RECOVERY : yes
77- SCHNORRSIG : yes
78- ELLSWIFT : yes
79- CTIMETESTS : no
80- test_script :
81- - ./ci/ci.sh
82- << : *CAT_LOGS
83-
8467# Sanitizers
8568task :
8669 << : *LINUX_CONTAINER
Original file line number Diff line number Diff line change @@ -326,6 +326,53 @@ jobs:
326326 run : env
327327 if : ${{ always() }}
328328
329+ ppc64le_debian :
330+ name : " ppc64le: Linux (Debian stable, QEMU)"
331+ runs-on : ubuntu-latest
332+ needs : docker_cache
333+
334+ env :
335+ WRAPPER_CMD : ' qemu-ppc64le'
336+ SECP256K1_TEST_ITERS : 16
337+ HOST : ' powerpc64le-linux-gnu'
338+ WITH_VALGRIND : ' no'
339+ ECDH : ' yes'
340+ RECOVERY : ' yes'
341+ SCHNORRSIG : ' yes'
342+ ELLSWIFT : ' yes'
343+ CTIMETESTS : ' no'
344+
345+ steps :
346+ - name : Checkout
347+ uses : actions/checkout@v3
348+
349+ - name : CI script
350+ uses : ./.github/actions/run-in-docker-action
351+ with :
352+ dockerfile : ./ci/linux-debian.Dockerfile
353+ tag : linux-debian-image
354+ command : >
355+ git config --global --add safe.directory ${{ github.workspace }} &&
356+ ./ci/ci.sh
357+
358+ - run : cat tests.log || true
359+ if : ${{ always() }}
360+ - run : cat noverify_tests.log || true
361+ if : ${{ always() }}
362+ - run : cat exhaustive_tests.log || true
363+ if : ${{ always() }}
364+ - run : cat ctime_tests.log || true
365+ if : ${{ always() }}
366+ - run : cat bench.log || true
367+ if : ${{ always() }}
368+ - run : cat config.log || true
369+ if : ${{ always() }}
370+ - run : cat test_env.log || true
371+ if : ${{ always() }}
372+ - name : CI env
373+ run : env
374+ if : ${{ always() }}
375+
329376 mingw_debian :
330377 name : ${{ matrix.configuration.job_name }}
331378 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments