00_setup_env_mac_native.sh raw
1 #!/usr/bin/env bash
2 #
3 # Copyright (c) 2019-present The Limenka developers
4 # Distributed under the MIT software license, see the accompanying
5 # file COPYING or http://www.opensource.org/licenses/mit-license.php.
6
7 export LC_ALL=C.UTF-8
8
9 # Homebrew's python@3.12 is marked as externally managed (PEP 668).
10 # Therefore, `--break-system-packages` is needed.
11 export CONTAINER_NAME="ci_mac_native" # macos does not use a container, but the env var is needed for logging
12 export PIP_PACKAGES="--break-system-packages zmq"
13 export GOAL="install"
14 export CMAKE_GENERATOR="Ninja"
15 export LIMENKA_CONFIG="-DBUILD_GUI=ON -DWITH_ZMQ=ON -DWITH_MINIUPNPC=ON -DREDUCE_EXPORTS=ON"
16 export CI_OS_NAME="macos"
17 export NO_DEPENDS=1
18 export OSX_SDK=""
19