summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-02-08 11:02:52 +1000
committerPauli <ppzgs1@gmail.com>2021-02-12 12:28:55 +1000
commit499f2ae9e989015b75c5a3895994f26bc0a7334a (patch)
tree504c694bcb9211820cfa2dd367ba547e7f13ea98 /.github/workflows
parent31f7ff37b403f5ed50cf2e1e828a2e63576dac58 (diff)
CI: add a non-caching CI loop
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14126)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b057eb1d5b..67ec2541b3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -80,6 +80,17 @@ jobs:
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+ non-caching:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: config
+ run: ./config enable-asan enable-ubsan no-cached-fetch && perl configdata.pm --dump
+ - name: make
+ run: make -s -j4
+ - name: make test
+ run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} OPENSSL_TEST_RAND_ORDER=0 TESTS="-test_fuzz* -test_ssl_* -test_evp -test_cmp_http -test_store -test_enc -[01][0-9]"
+
sanitizers:
runs-on: ubuntu-latest
steps: