diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-10-25 09:49:16 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-10-25 13:39:03 +0100 |
commit | da168934741b776bce07d5503ca2344d300723b3 (patch) | |
tree | ead3f4bfe2b986047d8601126b592f3b9275fa22 /ci | |
parent | 702836530ffa351e863b1b1300fd2e559a14ef23 (diff) |
ci: Use `macos-ventura-xcode:14.1` image for "macOS native" task
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/test/00_setup_env_mac_native_arm64.sh (renamed from ci/test/00_setup_env_mac_native_x86_64.sh) | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ci/test/00_setup_env_mac_native_x86_64.sh b/ci/test/00_setup_env_mac_native_arm64.sh index d176296e76..cb0e13e77c 100755 --- a/ci/test/00_setup_env_mac_native_x86_64.sh +++ b/ci/test/00_setup_env_mac_native_arm64.sh @@ -6,12 +6,11 @@ export LC_ALL=C.UTF-8 -export HOST=x86_64-apple-darwin -export PIP_PACKAGES="zmq lief" +export HOST=arm64-apple-darwin +export PIP_PACKAGES="zmq" export GOAL="install" -export BITCOIN_CONFIG="--with-gui --enable-reduce-exports" +export BITCOIN_CONFIG="--with-gui --with-miniupnpc --with-natpmp --enable-reduce-exports" export CI_OS_NAME="macos" export NO_DEPENDS=1 export OSX_SDK="" export CCACHE_SIZE=300M -export RUN_SECURITY_TESTS="true" |