mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
Github CI: Add a job for out-of-source build + install
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13935)
This commit is contained in:
parent
d9c22dde29
commit
4605b34d56
21
.github/workflows/ci.yml
vendored
21
.github/workflows/ci.yml
vendored
@ -123,3 +123,24 @@ jobs:
|
||||
run: make -s -j4
|
||||
- name: make test
|
||||
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
|
||||
|
||||
out-of-source-and-install:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: extra preparations
|
||||
run: |
|
||||
mkdir ./build
|
||||
mkdir ./install
|
||||
- name: config
|
||||
run: ../config --strict-warnings --prefix=$(cd ../install; pwd) && perl configdata.pm --dump
|
||||
working-directory: ./build
|
||||
- name: make
|
||||
run: make -s -j4
|
||||
working-directory: ./build
|
||||
- name: make test
|
||||
run: make test HARNESS_JOBS=${HARNESS_JOBS:-4}
|
||||
working-directory: ./build
|
||||
- name: make install
|
||||
run: make install
|
||||
working-directory: ./build
|
||||
|
Loading…
Reference in New Issue
Block a user