-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: automatically trigger oqs-provider release-test
- Loading branch information
Showing
1 changed file
with
27 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,27 @@ | ||
name: Release tests | ||
|
||
on: # TODO: do we want to run this on pull request only? push only? need to have standardized release process | ||
push: | ||
branches: [ 'dev-**' ] # TODO: settle on prefix / suffix for release candidates | ||
pull_request: | ||
branches: [ 'dev-**' ] | ||
|
||
|
||
jobs: | ||
|
||
oqs-provider-release-test: | ||
container: | ||
image: openquantumsafe/ci-ubuntu-jammy:latest # TODO: use this or the focal container? | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout oqs-provider | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: open-quantum-safe/oqs-provider | ||
- name: Checkout liboqs | ||
uses: actions/checkout@v2 | ||
with: | ||
path: liboqs | ||
- name: Display everything | ||
run: pwd && ls | ||
|