summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tmraz@fedoraproject.org>2021-01-19 14:56:16 +0100
committerTomas Mraz <tmraz@fedoraproject.org>2021-01-19 15:45:34 +0100
commit69b3a65adeb1a997b1d5c7f28cda45c543de956d (patch)
tree5a2a6e005398ae44eac783616010442ba45305f1 /.github
parenta83690c0b61e342f35a9583868b74e7ff6023101 (diff)
Fix regression in no-deprecated build
Also add a new no-deprecated CI build to test it. Fixes #13896 Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/13902)
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 a4565e5499..ce40b5104a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -70,6 +70,17 @@ jobs:
- name: make test
run: make test
+ 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
+
sanitizers:
runs-on: ubuntu-latest
steps: