summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-03-16 08:29:35 +1000
committerPauli <ppzgs1@gmail.com>2021-03-18 09:03:06 +1000
commit11c7874d0c055450783252e68d97dc1de7151dc3 (patch)
treedcf729f87e2e0b355ade9835da30719afb8bc68b /.github/workflows
parent9a4854405869158bd87ee90345b933815882a24d (diff)
ci: add a no-legacy build
Fixes #12091 Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14563)
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 6a2e47cbbd..7adc2ab746 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -124,6 +124,17 @@ jobs:
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+ no-legacy:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: config
+ run: ./config --strict-warnings no-legacy && perl configdata.pm --dump
+ - name: make
+ run: make -s -j4
+ - name: make test
+ run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+
legacy:
runs-on: ubuntu-latest
steps: