mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-06-17 03:50:03 +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
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir -p build
|
||||
if [ "$RUNNER_OS" == "macOS" ]; then
|
||||
brew install openssl
|
||||
fi
|
||||
|
|
@ -34,7 +33,7 @@ jobs:
|
|||
if [ "$RUNNER_OS" == "macOS" ]; then
|
||||
SSL_OPTS="-D OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1"
|
||||
fi
|
||||
cd build && cmake ${SSL_OPTS} ${{matrix.build-opts}} ..
|
||||
cmake ${SSL_OPTS} ${{matrix.build-opts}} -B build
|
||||
|
||||
- name: Build
|
||||
shell: bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue