From: Pauli Date: Mon, 15 Mar 2021 22:29:35 +0000 (+1000) Subject: ci: add a no-legacy build X-Git-Tag: openssl-3.0.0-alpha14~254 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11c7874d0c055450783252e68d97dc1de7151dc3;p=thirdparty%2Fopenssl.git ci: add a no-legacy build Fixes #12091 Reviewed-by: Tomas Mraz Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/14563) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a2e47cbbda..7adc2ab7461 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: