From 8900cdf2305c55aa3a1d4b0d6b4d33afdc72e756 Mon Sep 17 00:00:00 2001 From: Dmitry Misharov Date: Mon, 20 Jan 2025 09:19:48 +0100 Subject: [PATCH] os-zoo.yml: Add linux-s390x runner Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/26489) --- .github/workflows/os-zoo.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml index f517cbd6d35..f6a29d8e50e 100644 --- a/.github/workflows/os-zoo.yml +++ b/.github/workflows/os-zoo.yml @@ -191,6 +191,23 @@ jobs: - name: make test run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} + linux-s390x: + runs-on: linux-s390x + steps: + - uses: actions/checkout@v4 + - name: config + run: ./config enable-fips 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} + freebsd-x86_64: runs-on: ubuntu-latest steps: -- 2.47.2