-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Port workflows from CircleCI to GitHub Actions * Add CI job for workflow linting * Update README badge --------- Signed-off-by: Spencer Wilson <[email protected]>
- Loading branch information
Showing
3 changed files
with
48 additions
and
89 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,47 @@ | ||
name: liboqs-java CI | ||
|
||
on: | ||
push: | ||
branches: ["**"] | ||
pull_request: | ||
branches: ["**"] | ||
repository_dispatch: | ||
types: ["**"] | ||
|
||
jobs: | ||
workflowcheck: | ||
name: Check validity of GitHub workflows | ||
runs-on: ubuntu-latest | ||
container: openquantumsafe/ci-ubuntu-latest:latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4 | ||
- name: Ensure GitHub actions are valid | ||
run: actionlint -shellcheck "" # run *without* shellcheck | ||
|
||
build-and-test: | ||
needs: workflowcheck | ||
name: OQS Ubuntu | ||
runs-on: ubuntu-latest | ||
container: openquantumsafe/ci-ubuntu-focal:latest | ||
steps: | ||
- name: Checkout liboqs-java | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4 | ||
- name: Checkout liboqs main | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4 | ||
with: | ||
repository: open-quantum-safe/liboqs | ||
path: liboqs | ||
ref: main | ||
- name: Build liboqs | ||
run: mkdir build && cd build && cmake .. -G"Ninja" -DBUILD_SHARED_LIBS=ON -DOQS_BUILD_ONLY_LIB=ON && ninja install | ||
working-directory: liboqs | ||
- name: Resolve all maven project dependencies | ||
run: mvn dependency:go-offline | ||
- name: Build liboqs-java and run tests | ||
run: export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" && mvn package | ||
- name: Compile KEM, Signatures and Rand examples | ||
run: | | ||
javac -cp target/liboqs-java.jar examples/KEMExample.java && | ||
javac -cp target/liboqs-java.jar examples/SigExample.java && | ||
javac -cp target/liboqs-java.jar examples/RandExample.java |
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