summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-03-04 13:37:34 +0100
committerTomas Mraz <tomas@openssl.org>2021-03-05 14:27:46 +0100
commita7a041c2301fcb7fc2080ddd22a6076060bbaa69 (patch)
tree488f339d4f074da88db9256098329cc4c44c2040 /.github/workflows
parent1ddea35bd418b89c2f8403b41c054ad2f454382b (diff)
CI external tests: separate each external test into its own phase
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/14416)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1b5746b9bc..fbe61efdbc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -185,5 +185,11 @@ jobs:
run: ./config --strict-warnings --debug no-afalgeng enable-rc5 enable-md2 enable-ssl3 enable-ssl3-method enable-weak-ssl-ciphers enable-zlib enable-ec_nistp_64_gcc_128 enable-external-tests && perl configdata.pm --dump
- name: make
run: make -s -j4
- - name: make test
- run: BORING_RUNNER_DIR=$(pwd)/boringssl/ssl/test/runner make test TESTS="test_external_gost_engine test_external_krb5"
+ - name: test external gost-engine
+ run: make test TESTS="test_external_gost_engine"
+ - name: test external krb5
+ run: make test TESTS="test_external_krb5"
+# - name: test external boringssl
+# run: BORING_RUNNER_DIR=$(pwd)/boringssl/ssl/test/runner make test TESTS="test_external_boringssl"
+# - name: test external pyca
+# run: make test TESTS="test_external_pyca"