]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
run-checker-daily.yml: If the openssl app is not built do not run it
authorTomas Mraz <tomas@openssl.org>
Thu, 19 Oct 2023 15:19:44 +0000 (17:19 +0200)
committerMatt Caswell <matt@openssl.org>
Mon, 23 Oct 2023 09:44:14 +0000 (10:44 +0100)
Reviewed-by: Todd Short <todd.short@me.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22443)

.github/workflows/run-checker-daily.yml

index fdd07294a4a147515083275a1f25ad2767fae3f5..0dbbac285f17c68a8f34d9d8b2d98ea37ae9c846 100644 (file)
@@ -147,6 +147,6 @@ jobs:
     - name: get cpu info
       run: |
         cat /proc/cpuinfo
-        ./util/opensslwrap.sh version -c
+        if [ -x apps/openssl ] ; then ./util/opensslwrap.sh version -c ; fi
     - name: make test
       run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}