summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-10-19 17:19:44 +0200
committerMatt Caswell <matt@openssl.org>2023-10-23 10:44:14 +0100
commitbde541104908421a46268a88c211c02f71343765 (patch)
tree44bc6dd38bdfc7aa01cfad8d78acb061d57c1af5 /.github/workflows
parentf2c2857accd5650cbcb0767019abd75925b51a3e (diff)
run-checker-daily.yml: If the openssl app is not built do not run it
Reviewed-by: Todd Short <todd.short@me.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22443)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/run-checker-daily.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/run-checker-daily.yml b/.github/workflows/run-checker-daily.yml
index fdd07294a4..0dbbac285f 100644
--- a/.github/workflows/run-checker-daily.yml
+++ b/.github/workflows/run-checker-daily.yml
@@ -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}