summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-03-31 07:59:48 +0200
committerRichard Levitte <levitte@openssl.org>2021-04-15 19:55:25 +0200
commit4a95b70d1e3df791ea569e94067cf0bec1f69557 (patch)
tree30780755652cd902573cf74d25aabc84276aa0e1 /.github/workflows
parenta732a4c329144f0b4c60372d9b7106c6b88ddd9f (diff)
Github workflows: re-implement a no-shared build
We do this both on Ubuntu and MacOS X Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14753)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f0c60d6947..ee4a2c8f2b 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: