From: Richard Levitte Date: Wed, 31 Mar 2021 05:59:48 +0000 (+0200) Subject: Github workflows: re-implement a no-shared build X-Git-Tag: openssl-3.0.0-alpha15~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a95b70d1e3df791ea569e94067cf0bec1f69557;p=thirdparty%2Fopenssl.git Github workflows: re-implement a no-shared build We do this both on Ubuntu and MacOS X Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/14753) --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0c60d69476..ee4a2c8f2b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,6 +92,20 @@ jobs: - name: make test run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} + no-shared: + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + runs-on: ${{matrix.os}} + steps: + - uses: actions/checkout@v2 + - name: config + run: ./config --strict-warnings no-shared && perl configdata.pm --dump + - name: make + run: make -s -j4 + - name: make test + run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} + non-caching: runs-on: ubuntu-latest steps: