-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
34 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,5 @@ | ||
Thank you for contributing to `meta-pqc`! | ||
|
||
By submitting this pull request, you confirm that: | ||
- This contribution is your original work or you have the necessary rights to submit it. | ||
- You agree to the terms outlined in the project's Contributor License Agreement (CLA). |
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,29 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ "scarthgap" ] | ||
pull_request: | ||
branches: [ "scarthgap" ] | ||
|
||
# env: | ||
# #BUILD_TYPE: Release | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get --no-install-recommends install -y python3 python3-pip && sudo pip3 install kas | ||
|
||
- name: Build | ||
#run: kas-container build kas-pqc.yml | ||
run: kas-container dump kas-pqc.yml | ||
|
||
- name: Test | ||
working-directory: ${{github.workspace}} | ||
run: echo Test | ||
|