mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-07-03 11:53:41 +02:00
.github/workflows/ci.yml: pass "-B build" to cmake at configure stage. So we don't have to use mkdir/cd
This commit is contained in:
parent
a46a13db4d
commit
920d422ff8
1 changed files with 1 additions and 2 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -23,7 +23,6 @@ jobs:
|
||||||
- name: Dependancies
|
- name: Dependancies
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
mkdir -p build
|
|
||||||
if [ "$RUNNER_OS" == "macOS" ]; then
|
if [ "$RUNNER_OS" == "macOS" ]; then
|
||||||
brew install openssl
|
brew install openssl
|
||||||
fi
|
fi
|
||||||
|
|
@ -34,7 +33,7 @@ jobs:
|
||||||
if [ "$RUNNER_OS" == "macOS" ]; then
|
if [ "$RUNNER_OS" == "macOS" ]; then
|
||||||
SSL_OPTS="-D OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1"
|
SSL_OPTS="-D OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1"
|
||||||
fi
|
fi
|
||||||
cd build && cmake ${SSL_OPTS} ${{matrix.build-opts}} ..
|
cmake ${SSL_OPTS} ${{matrix.build-opts}} -B build
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue