-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
38 additions
and
21 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,23 +50,22 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Full build | ||
run: OPENSSL_BRANCH=${{ matrix.ossl-branch }} LIBOQS_BRANCH=0.9.1 ./scripts/fullbuild.sh | ||
run: OPENSSL_BRANCH=${{ matrix.ossl-branch }} LIBOQS_BRANCH=main ./scripts/fullbuild.sh | ||
- name: Enable sibling oqsprovider for testing | ||
run: cd build/lib && ln -s oqsprovider.so oqsprovider2.so | ||
- name: Test | ||
run: ./scripts/runtests.sh -V | ||
# Need to disable due to missing HQC update cherry-pick in liboqs release: | ||
# - name: Verify nothing changes on re-generate code | ||
# run: | | ||
# apt-get update && apt-get install -y clang-format && \ | ||
# git config --global user.name "ciuser" && \ | ||
# git config --global user.email "[email protected]" && \ | ||
# git config --global --add safe.directory `pwd` && \ | ||
# export LIBOQS_SRC_DIR=`pwd`/liboqs && \ | ||
# ! pip3 install -r oqs-template/requirements.txt 2>&1 | grep ERROR && \ | ||
# python3 oqs-template/generate.py && \ | ||
# find . -type f -and '(' -name '*.h' -or -name '*.c' -or -name '*.inc' ')' | xargs clang-format -i && \ | ||
# ! git status | grep modified | ||
- name: Verify nothing changes on re-generate code | ||
run: | | ||
apt-get update && apt-get install -y clang-format && \ | ||
git config --global user.name "ciuser" && \ | ||
git config --global user.email "[email protected]" && \ | ||
git config --global --add safe.directory `pwd` && \ | ||
export LIBOQS_SRC_DIR=`pwd`/liboqs && \ | ||
! pip3 install -r oqs-template/requirements.txt 2>&1 | grep ERROR && \ | ||
python3 oqs-template/generate.py && \ | ||
find . -type f -and '(' -name '*.h' -or -name '*.c' -or -name '*.inc' ')' | xargs clang-format -i && \ | ||
! git status | grep modified | ||
- name: Build .deb install package | ||
run: cpack | ||
working-directory: build | ||
|
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
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
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
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