-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into jonas/ml-dsa-target-feature
- Loading branch information
Showing
10 changed files
with
442 additions
and
167 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
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,44 @@ | ||
name: s390x - Build & Test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: ["main", "dev"] | ||
workflow_dispatch: | ||
merge_group: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
s390x: | ||
runs-on: ubuntu-latest | ||
name: Build on ubuntu-22.04 s390x | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: uraimo/run-on-arch-action@v2 | ||
name: Run | ||
id: runcmd | ||
with: | ||
arch: s390x | ||
distro: ubuntu22.04 | ||
|
||
# Speed up builds by storing container images in | ||
# a GitHub package registry. | ||
githubToken: ${{ github.token }} | ||
|
||
run: | | ||
apt-get -y update | ||
apt-get install -y curl gcc g++ make cmake ninja-build git | ||
cd libcrux-ml-kem/c | ||
cmake -B build -G"Ninja Multi-Config" | ||
cmake --build build | ||
./build/Debug/ml_kem_test | ||
cd ../cg | ||
cmake -B build -G"Ninja Multi-Config" | ||
cmake --build build | ||
./build/Debug/ml_kem_test |
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
Oops, something went wrong.