mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
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)
This commit is contained in:
parent
a732a4c329
commit
4a95b70d1e
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user