-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Disable erroring TravisCI build" (#1960)
* Revert "Disable erroring TravisCI build" This reverts commit b59d78c. Signed-off-by: Basil Hess <bhe@zurich.ibm.com> * disable cross on s390x Signed-off-by: Basil Hess <bhe@zurich.ibm.com> * remove status badge Signed-off-by: Basil Hess <bhe@zurich.ibm.com> --------- Signed-off-by: Basil Hess <bhe@zurich.ibm.com>
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
language: c | ||
before_script: | ||
- sudo apt update && sudo apt -y install astyle cmake gcc ninja-build libssl-dev python3-pytest python3-pytest-xdist unzip xsltproc doxygen graphviz valgrind | ||
jobs: | ||
include: | ||
- arch: ppc64le # The IBM Power LXD container based build for OSS only | ||
os: linux # required for arch different than amd64 | ||
dist: focal # or bionic | xenial with xenial as default | ||
compiler: gcc | ||
if: NOT branch =~ /^ghactionsonly-/ | ||
script: | ||
- mkdir build && cd build && cmake -GNinja -DOQS_ENABLE_SIG_STFL_LMS=ON -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_HAZARDOUS_EXPERIMENTAL_ENABLE_STFL_SIG_KEY_SIG_GEN=ON .. && cmake -LA -N .. && ninja | ||
- cd build & ninja run_tests | ||
- arch: s390x | ||
os: linux | ||
dist: focal | ||
compiler: gcc | ||
if: NOT branch =~ /^ghactionsonly-/ | ||
script: | ||
- mkdir build && cd build && cmake -GNinja -DOQS_ENABLE_SIG_STFL_LMS=ON -DOQS_ENABLE_SIG_STFL_XMSS=ON -DOQS_HAZARDOUS_EXPERIMENTAL_ENABLE_STFL_SIG_KEY_SIG_GEN=ON .. && cmake -LA -N .. && ninja | ||
- cd build & ninja run_tests |
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