forked from aws/aws-lc
-
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.
CI for PPC32be and PPC64LE Cross build/test (aws#1329)
Add CI to build/test for ppc32be and ppc64be big-endian
- Loading branch information
Showing
5 changed files
with
85 additions
and
48 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,42 @@ | ||
name: Cross Build & Test | ||
on: | ||
push: | ||
branches: [ '*' ] | ||
pull_request: | ||
branches: [ '*' ] | ||
concurrency: | ||
group: ppc64be-${{ github.workflow }}-${{ github.event.pull_request.number }} | ||
cancel-in-progress: true | ||
jobs: | ||
ppc64-build-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install qemu | ||
run: sudo apt-get -y install qemu-user qemu-user-binfmt | ||
- uses: actions/checkout@v4 | ||
- name: PPC64 Build/Test | ||
run: tests/ci/run_cross_tests.sh ppc64 powerpc64-unknown-linux-gnu "-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=Release -DFIPS=1 -DBUILD_SHARED_LIBS=1" | ||
ppc32-non-fips-build-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install qemu | ||
run: sudo apt-get -y install qemu-user qemu-user-binfmt | ||
- uses: actions/checkout@v4 | ||
- name: PPC32 Build/Test | ||
run: tests/ci/run_cross_tests.sh ppc powerpc-unknown-linux-gnu "-DCMAKE_BUILD_TYPE=Release" | ||
ppc32-fips-build-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install qemu | ||
run: sudo apt-get -y install qemu-user qemu-user-binfmt | ||
- uses: actions/checkout@v4 | ||
- name: PPC32 Build/Test | ||
run: tests/ci/run_cross_tests.sh ppc powerpc-unknown-linux-gnu "-DCMAKE_BUILD_TYPE=Release -DFIPS=1 -DBUILD_SHARED_LIBS=1" | ||
ppc64le-build-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install qemu | ||
run: sudo apt-get -y install qemu-user qemu-user-binfmt | ||
- uses: actions/checkout@v4 | ||
- name: PPC64LE Build/Test | ||
run: tests/ci/run_cross_tests.sh ppc64le powerpc64le-unknown-linux-gnu "-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=Release -DFIPS=1 -DBUILD_SHARED_LIBS=1" |
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