Skip to content

Commit

Permalink
WIP ci/cirrus: Add ARM32 valgrind tasks
Browse files Browse the repository at this point in the history
[skip actions]
  • Loading branch information
real-or-random committed Oct 26, 2023
1 parent 1f1bb78 commit b9b1481
Showing 1 changed file with 54 additions and 21 deletions.
75 changes: 54 additions & 21 deletions .cirrus.yml
Expand Up @@ -58,38 +58,71 @@ linux_arm64_container_snippet: &LINUX_ARM64_CONTAINER
test_script:
- docker run --rm --mount "type=bind,src=./,dst=/ci_secp256k1" --env-file /tmp/env --replace --name "ci_secp256k1_arm" "ci_secp256k1_arm" bash -c "cd /ci_secp256k1/ && ./ci/ci.sh"

task:
name: "ARM64: Linux (Debian stable)"
persistent_worker:
labels:
type: arm64
env:
ECDH: yes
RECOVERY: yes
SCHNORRSIG: yes
ELLSWIFT: yes
matrix:
# Currently only gcc-snapshot, the other compilers are tested on GHA with QEMU
- env: { CC: 'gcc-snapshot' }
<< : *LINUX_ARM64_CONTAINER
<< : *CAT_LOGS
linux_armhf_container_snippet: &LINUX_ARMHF_CONTAINER
env_script:
- env | tee /tmp/env
build_script:
- DOCKER_BUILDKIT=1 docker build --file "ci/linux-debian.Dockerfile" --tag="ci_secp256k1_arm"
- docker image prune --force # Cleanup stale layers
test_script:
- docker run --rm --mount "type=bind,src=./,dst=/ci_secp256k1" --env-file /tmp/env --replace --name "ci_secp256k1_arm" "ci_secp256k1_arm" bash -c "apt-get update && apt-get install --no-install-recommends -y valgrind:armhf && cd /ci_secp256k1/ && ./ci/ci.sh"

# task:
# name: "ARM64: Linux (Debian stable)"
# persistent_worker:
# labels:
# type: arm64
# env:
# ECDH: yes
# RECOVERY: yes
# SCHNORRSIG: yes
# ELLSWIFT: yes
# matrix:
# # Currently only gcc-snapshot, the other compilers are tested on GHA with QEMU
# - env: { CC: 'gcc-snapshot' }
# << : *LINUX_ARM64_CONTAINER
# << : *CAT_LOGS

# task:
# name: "ARM64: Linux (Debian stable), Valgrind"
# persistent_worker:
# labels:
# type: arm64
# env:
# ECDH: yes
# RECOVERY: yes
# SCHNORRSIG: yes
# ELLSWIFT: yes
# WRAPPER_CMD: 'valgrind --error-exitcode=42'
# SECP256K1_TEST_ITERS: 2
# matrix:
# - env: { CC: 'gcc' }
# - env: { CC: 'clang' }
# - env: { CC: 'gcc-snapshot' }
# - env: { CC: 'clang-snapshot' }
# << : *LINUX_ARM64_CONTAINER
# << : *CAT_LOGS

task:
name: "ARM64: Linux (Debian stable), Valgrind"
name: "ARM32: Linux (Debian stable), Valgrind"
persistent_worker:
labels:
type: arm64
env:
HOST: 'arm-linux-gnueabihf'
ECDH: yes
RECOVERY: yes
SCHNORRSIG: yes
ELLSWIFT: yes
WRAPPER_CMD: 'valgrind --error-exitcode=42'
SECP256K1_TEST_ITERS: 2
matrix:
- env: { CC: 'gcc' }
- env: { CC: 'clang' }
- env: { CC: 'gcc-snapshot' }
- env: { CC: 'clang-snapshot' }
<< : *LINUX_ARM64_CONTAINER
- env: { }
- env: { EXPERIMENTAL: 'yes', ASM: 'arm32' }
matrix:
- env: { } # gcc
- env: { CC: 'clang --target=arm-linux-gnueabihf -march=armv7-m' }
# - env: { CC: 'gcc-snapshot' } # FIXME multilib gcc?
- env: { CC: 'clang-snapshot --target=arm-linux-gnueabihf -march=armv7-m' }
<< : *LINUX_ARMHF_CONTAINER
<< : *CAT_LOGS

0 comments on commit b9b1481

Please sign in to comment.