summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-12-18 15:39:50 +0100
committerRichard Levitte <levitte@openssl.org>2020-12-19 17:02:12 +0100
commite3577adddf6bc4f0d9d202621a2c576d982d6f0a (patch)
treed674c7535739a93f027ca1c10ca31a4501e0b3a2 /.github
parent6ed4022cd1e4b066ddc6131ca659d8a260944a76 (diff)
GitHub CI: Separate no-deprecated job from minimal job
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13706)
Diffstat (limited to '.github')
-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 4793246b5a..7588bcca66 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -69,6 +69,17 @@ jobs:
- name: make test
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+ no-deprecated:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: config
+ run: ./config --strict-warnings no-deprecated && perl configdata.pm --dump
+ - name: make
+ run: make -s -j4
+ - name: make test
+ run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
+
sanitizers:
runs-on: ubuntu-latest
steps: