Skip to content

Commit

Permalink
ci: Add "x86_64: Linux (Debian stable)" GitHub Actions job
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Aug 7, 2023
1 parent 6d3d4b9 commit 7ea529c
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 0 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
name: CI
on: [pull_request, push]

env:
### compiler options
HOST:
WRAPPER_CMD:
# Specific warnings can be disabled with -Wno-error=foo.
# -pedantic-errors is not equivalent to -Werror=pedantic and thus not implied by -Werror according to the GCC manual.
WERROR_CFLAGS: '-Werror -pedantic-errors'
MAKEFLAGS: '-j4'
BUILD: 'check'
### secp256k1 config
ECMULTWINDOW: 'auto'
ECMULTGENPRECISION: 'auto'
ASM: 'no'
WIDEMUL: 'auto'
WITH_VALGRIND: 'yes'
EXTRAFLAGS:
### secp256k1 modules
EXPERIMENTAL: 'no'
ECDH: 'no'
RECOVERY: 'no'
SCHNORRSIG: 'no'
ELLSWIFT: 'no'
### test options
SECP256K1_TEST_ITERS:
BENCH: 'yes'
SECP256K1_BENCH_ITERS: 2
CTIMETESTS: 'yes'
# Compile and run the examples.
EXAMPLES: 'yes'

jobs:
modified_files:
runs-on: ubuntu-latest
Expand All @@ -24,3 +54,57 @@ jobs:
packages: write
needs: modified_files
if: contains(needs.modified_files.outputs.all, '.github/workflows/docker.yml') || contains(needs.modified_files.outputs.all, 'ci/linux-debian.Dockerfile')

x86_64_debian_stable:
name: "x86_64: Linux (Debian stable)"
runs-on: ubuntu-latest
container: ghcr.io/${{ github.repository_owner }}/secp256k1-ci-image:latest
needs: [modified_files, docker_image]
if: ${{ always() }}

strategy:
fail-fast: false
matrix:
env_var:
- 'WIDEMUL=int64 RECOVERY=yes'
- 'WIDEMUL=int64 ECDH=yes SCHNORRSIG=yes ELLSWIFT=yes'
- 'WIDEMUL=int128'
- 'WIDEMUL=int128_struct ELLSWIFT=yes'
- 'WIDEMUL=int128 RECOVERY=yes SCHNORRSIG=yes ELLSWIFT=yes'
- 'WIDEMUL=int128 ECDH=yes SCHNORRSIG=yes'
- 'WIDEMUL=int128 ASM=x86_64 ELLSWIFT=yes'
- ' RECOVERY=yes SCHNORRSIG=yes'
- 'CTIMETESTS=no RECOVERY=yes ECDH=yes SCHNORRSIG=yes CPPFLAGS=-DVERIFY'
- 'BUILD=distcheck WITH_VALGRIND=no CTIMETESTS=no BENCH=no'
- 'CPPFLAGS=-DDETERMINISTIC'
- 'CFLAGS=-O0 CTIMETESTS=no'
- 'CFLAGS=-O1 RECOVERY=yes ECDH=yes SCHNORRSIG=yes ELLSWIFT=yes'
- 'ECMULTGENPRECISION=2 ECMULTWINDOW=2'
- 'ECMULTGENPRECISION=8 ECMULTWINDOW=4'
cc: ['gcc', 'clang', 'gcc-snapshot', 'clang-snapshot']

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run test script
env:
CC: ${{ matrix.cc }}
run: env ${{ matrix.env_var }} ./ci/cirrus.sh

- run: cat tests.log || true
if: ${{ always() }}
- run: cat noverify_tests.log || true
if: ${{ always() }}
- run: cat exhaustive_tests.log || true
if: ${{ always() }}
- run: cat ctime_tests.log || true
if: ${{ always() }}
- run: cat bench.log || true
if: ${{ always() }}
- run: cat config.log || true
if: ${{ always() }}
- run: cat test_env.log || true
if: ${{ always() }}
- run: env
if: ${{ always() }}
4 changes: 4 additions & 0 deletions ci/cirrus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ set -eux

export LC_ALL=C

if [ "${GITHUB_ACTIONS:-undefined}" = "true" ]; then
git config --global --add safe.directory "$GITHUB_WORKSPACE"
fi

# Print commit and relevant CI environment to allow reproducing the job outside of CI.
git show --no-patch
print_environment() {
Expand Down

0 comments on commit 7ea529c

Please sign in to comment.