]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
os-zoo.yml: Add linux-s390x runner
authorDmitry Misharov <dmitry@openssl.org>
Mon, 20 Jan 2025 08:19:48 +0000 (09:19 +0100)
committerTomas Mraz <tomas@openssl.org>
Thu, 23 Jan 2025 11:17:53 +0000 (12:17 +0100)
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26489)

.github/workflows/os-zoo.yml

index f517cbd6d35f6794d75d4f4a3113b3523e368178..f6a29d8e50e01be893e681fc50ad88899806e7d5 100644 (file)
@@ -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: