Add return check for lock/unlock function #1542
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux tests | |
on: [push, pull_request] | |
jobs: | |
stylecheck: | |
name: Check code formatting | |
container: openquantumsafe/ci-ubuntu-focal-x86_64:latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Ensure code conventions are upheld | |
run: python3 -m pytest --verbose tests/test_code_conventions.py | |
- name: Check that doxygen can parse the documentation | |
run: mkdir -p build/docs && doxygen docs/.Doxyfile | |
- name: Validate CBOM | |
run: scripts/validate_cbom.sh | |
upstreamcheck: | |
name: Check upstream code is properly integrated | |
container: openquantumsafe/ci-ubuntu-focal-x86_64:latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Verify copy_from_upstream state | |
run: | | |
git config --global user.name "ciuser" && \ | |
git config --global user.email "[email protected]" && \ | |
export LIBOQS_DIR=`pwd` && \ | |
git config --global --add safe.directory $LIBOQS_DIR && \ | |
cd scripts/copy_from_upstream && \ | |
! pip3 install -r requirements.txt 2>&1 | grep ERROR && \ | |
python3 copy_from_upstream.py copy && \ | |
! git status | grep modified | |
buildcheck: | |
name: Check that code passes a basic build before starting heavier tests | |
container: openquantumsafe/ci-ubuntu-focal-x86_64:latest | |
needs: stylecheck | |
runs-on: ubuntu-latest | |
env: | |
KEM_NAME: kyber_768 | |
SIG_NAME: dilithium_3 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Configure | |
run: | | |
mkdir build && \ | |
cd build && \ | |
cmake .. --warn-uninitialized \ | |
-GNinja \ | |
-DOQS_MINIMAL_BUILD="KEM_$KEM_NAME;SIG_$SIG_NAME" \ | |
> config.log 2>&1 && \ | |
cat config.log && \ | |
cmake -LA .. && \ | |
! (grep "uninitialized variable" config.log) | |
- name: Build | |
run: ninja | |
working-directory: build | |
linux_intel: | |
needs: [stylecheck, upstreamcheck, buildcheck] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: alpine | |
container: openquantumsafe/ci-alpine-amd64:latest | |
CMAKE_ARGS: -DOQS_STRICT_WARNINGS=ON -DOQS_USE_OPENSSL=ON -DBUILD_SHARED_LIBS=ON -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=ON -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_alg_info.py --ignore=tests/test_kat_all.py | |
- name: alpine-no-stfl-key-sig-gen | |
container: openquantumsafe/ci-alpine-amd64:latest | |
CMAKE_ARGS: -DOQS_STRICT_WARNINGS=ON -DOQS_USE_OPENSSL=ON -DBUILD_SHARED_LIBS=ON -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=OFF -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_alg_info.py --ignore=tests/test_kat_all.py | |
- name: alpine-openssl-all | |
container: openquantumsafe/ci-alpine-amd64:latest | |
CMAKE_ARGS: -DOQS_STRICT_WARNINGS=ON -DOQS_USE_OPENSSL=ON -DBUILD_SHARED_LIBS=ON -DOQS_USE_AES_OPENSSL=ON -DOQS_USE_SHA2_OPENSSL=ON -DOQS_USE_SHA3_OPENSSL=ON -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=ON -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_alg_info.py --ignore=tests/test_kat_all.py | |
- name: alpine-noopenssl | |
container: openquantumsafe/ci-alpine-amd64:latest | |
CMAKE_ARGS: -DOQS_STRICT_WARNINGS=ON -DOQS_USE_OPENSSL=OFF -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=ON -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_alg_info.py --ignore=tests/test_kat_all.py | |
- name: focal-nistr4-openssl | |
container: openquantumsafe/ci-ubuntu-focal-x86_64:latest | |
CMAKE_ARGS: -DOQS_STRICT_WARNINGS=ON -DOQS_ALGS_ENABLED=NIST_R4 | |
PYTEST_ARGS: --ignore=tests/test_leaks.py --ignore=tests/test_kat_all.py | |
- name: jammy-std-openssl3 | |
container: openquantumsafe/ci-ubuntu-jammy:latest | |
CMAKE_ARGS: -DOQS_STRICT_WARNINGS=ON -DOQS_ALGS_ENABLED=STD -DBUILD_SHARED_LIBS=ON | |
PYTEST_ARGS: --ignore=tests/test_leaks.py --ignore=tests/test_kat_all.py | |
- name: address-sanitizer | |
container: openquantumsafe/ci-ubuntu-focal-x86_64:latest | |
CMAKE_ARGS: -DCMAKE_C_COMPILER=clang-9 -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=ON -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_distbuild.py --ignore=tests/test_leaks.py --ignore=tests/test_kat_all.py --numprocesses=auto --maxprocesses=10 | |
- name: address-sanitizer-no-stfl-key-sig-gen | |
container: openquantumsafe/ci-ubuntu-focal-x86_64:latest | |
CMAKE_ARGS: -DCMAKE_C_COMPILER=clang-9 -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=OFF -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_distbuild.py --ignore=tests/test_leaks.py --ignore=tests/test_kat_all.py --numprocesses=auto --maxprocesses=10 | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Configure | |
run: mkdir build && cd build && cmake -GNinja ${{ matrix.CMAKE_ARGS }} .. && cmake -LA .. | |
- name: Build | |
run: ninja | |
working-directory: build | |
- name: Run tests | |
timeout-minutes: 60 | |
run: mkdir -p tmp && python3 -m pytest --verbose --ignore=tests/test_code_conventions.py ${{ matrix.PYTEST_ARGS }} | |
- name: Package .deb | |
if: ${{ matrix.name }} == 'jammy-std-openssl3' | |
run: cpack | |
working-directory: build | |
- name: Retain .deb file | |
if: ${{ matrix.name }} == 'jammy-std-openssl3' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: liboqs-openssl3-shared-x64 | |
path: build/*.deb | |
linux_arm_emulated: | |
needs: [stylecheck, upstreamcheck, buildcheck] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: armhf | |
ARCH: armhf | |
CMAKE_ARGS: -DOQS_ENABLE_SIG_SPHINCS=OFF -DOQS_USE_OPENSSL=OFF -DOQS_OPT_TARGET=generic -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=ON -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_alg_info.py --ignore=tests/test_kat_all.py | |
- name: armhf-no-stfl-key-sig-gen | |
ARCH: armhf | |
CMAKE_ARGS: -DOQS_ENABLE_SIG_SPHINCS=OFF -DOQS_USE_OPENSSL=OFF -DOQS_OPT_TARGET=generic -DOQS_ENABLE_SIG_STFL_KEY_SIG_GEN=OFF -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_ENABLE_SIG_STFL_LMS=ON | |
PYTEST_ARGS: --ignore=tests/test_alg_info.py --ignore=tests/test_kat_all.py | |
# no longer supporting armel | |
# - name: armel | |
# ARCH: armel | |
# CMAKE_ARGS: -DOQS_ENABLE_SIG_SPHINCS=OFF -DOQS_USE_OPENSSL=OFF -DOQS_OPT_TARGET=generic | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install the emulation handlers | |
run: docker run --rm --privileged multiarch/qemu-user-static:register --reset | |
- name: Build in an x86_64 container | |
run: | | |
docker run --rm \ | |
-v `pwd`:`pwd` \ | |
-w `pwd` \ | |
openquantumsafe/ci-debian-buster-amd64:latest /bin/bash \ | |
-c "mkdir build && \ | |
(cd build && \ | |
cmake .. -GNinja ${{ matrix.CMAKE_ARGS }} \ | |
-DCMAKE_TOOLCHAIN_FILE=../.CMake/toolchain_${{ matrix.ARCH }}.cmake && \ | |
cmake -LA .. && \ | |
ninja)" | |
- name: Run the tests in an ${{ matrix.ARCH }} container | |
timeout-minutes: 60 | |
run: | | |
docker run --rm -e SKIP_TESTS=style,mem_kem,mem_sig \ | |
-v `pwd`:`pwd` \ | |
-w `pwd` \ | |
openquantumsafe/ci-debian-buster-${{ matrix.ARCH }}:latest /bin/bash \ | |
-c "mkdir -p tmp && \ | |
python3 -m pytest --verbose \ | |
--numprocesses=auto \ | |
--ignore=tests/test_code_conventions.py ${{ matrix.PYTEST_ARGS }}" | |
linux_cross_compile: | |
needs: [stylecheck, upstreamcheck, buildcheck] | |
runs-on: ubuntu-latest | |
container: openquantumsafe/ci-ubuntu-focal-x86_64:latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: windows-binaries | |
CMAKE_ARGS: -DCMAKE_TOOLCHAIN_FILE=../.CMake/toolchain_windows-amd64.cmake | |
- name: windows-dll | |
CMAKE_ARGS: -DCMAKE_TOOLCHAIN_FILE=../.CMake/toolchain_windows-amd64.cmake -DBUILD_SHARED_LIBS=ON | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Configure | |
run: mkdir build && cd build && cmake -GNinja ${{ matrix.CMAKE_ARGS }} .. && cmake -LA .. | |
- name: Build | |
run: ninja | |
working-directory: build |