From 0b0eb48000fbcd12cc052d031c144ba5ccd862b2 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:49:55 +0100 Subject: [PATCH] ci: Use `ninja` to build in macOS native CI job --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71b4f8d4d2808c..dd2f401a815468 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,7 +105,7 @@ jobs: run: | # A workaround for "The `brew link` step did not complete successfully" error. brew install --quiet python@3 || brew link --overwrite python@3 - brew install --quiet automake libtool pkg-config gnu-getopt ccache boost libevent miniupnpc libnatpmp zeromq qt@5 qrencode + brew install --quiet ninja pkg-config gnu-getopt ccache boost libevent miniupnpc libnatpmp zeromq qt@5 qrencode - name: Set Ccache directory run: echo "CCACHE_DIR=${RUNNER_TEMP}/ccache_dir" >> "$GITHUB_ENV" @@ -119,6 +119,8 @@ jobs: restore-keys: ${{ github.job }}-ccache- - name: CI script + env: + BITCOIN_CONFIG: '-G Ninja' run: ./ci/test_run_all.sh - name: Save Ccache cache