diff options
author | Dmitry Misharov <dmitry@openssl.org> | 2025-01-03 15:56:23 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2025-01-06 20:44:32 +0100 |
commit | 8f0c8e33bfdef3499e128b6c60a22844b80c481b (patch) | |
tree | b0d5347ba25eb7f79cd5e0908e02a65d44bf3179 /.github/workflows/os-zoo.yml | |
parent | Clean up ASN1_STRING comment and improve example in docs (diff) | |
download | openssl-8f0c8e33bfdef3499e128b6c60a22844b80c481b.tar.xz openssl-8f0c8e33bfdef3499e128b6c60a22844b80c481b.zip |
Add linux ppc64le runner
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26312)
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/os-zoo.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml index 152207be3c..e4e1e28210 100644 --- a/.github/workflows/os-zoo.yml +++ b/.github/workflows/os-zoo.yml @@ -177,3 +177,20 @@ jobs: run: ./util/opensslwrap.sh version -c - name: make test run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} + + linux-ppc64le: + runs-on: linux-ppc64le + steps: + - uses: actions/checkout@v4 + - name: config + run: ./config enable-fips enable-ec_nistp_64_gcc_128 enable-md2 enable-rc5 enable-ssl3 enable-ssl3-method enable-trace + - name: config dump + run: ./configdata.pm --dump + - name: make + run: make -j4 + - name: get cpu info + run: | + cat /proc/cpuinfo + ./util/opensslwrap.sh version -c + - name: make test + run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} |