mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-01 03:01:05 +00:00
Github-Pull: #32989 Rebased-From: dd1c5903e8d Print the ccache hit-rate for the job using a GitHub annotation if it was below 75%.
19 lines
709 B
Bash
Executable File
19 lines
709 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2019-present The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
# Homebrew's python@3.12 is marked as externally managed (PEP 668).
|
|
# Therefore, `--break-system-packages` is needed.
|
|
export CONTAINER_NAME="ci_mac_native" # macos does not use a container, but the env var is needed for logging
|
|
export PIP_PACKAGES="--break-system-packages zmq"
|
|
export GOAL="install"
|
|
export CMAKE_GENERATOR="Ninja"
|
|
export BITCOIN_CONFIG="-DBUILD_GUI=ON -DWITH_ZMQ=ON -DREDUCE_EXPORTS=ON"
|
|
export CI_OS_NAME="macos"
|
|
export NO_DEPENDS=1
|
|
export OSX_SDK=""
|