2020-10-07 02:13:55 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# This simple script can be used to set up a CI node running MacOS.
|
|
|
|
# An additional requirement that is *not* handled by this script is the
|
|
|
|
# installation of Xcode, which requires manual intervention.
|
2021-07-14 01:07:45 +08:00
|
|
|
#
|
2021-07-16 23:37:16 +08:00
|
|
|
# This script should first be run from an administrator account to install
|
|
|
|
# the dependencies necessary for running CI. It can be run without having
|
|
|
|
# to clone the LLVM repository with:
|
2021-07-14 01:07:45 +08:00
|
|
|
#
|
|
|
|
# $ /bin/bash -c "$(curl -fsSl https://raw.githubusercontent.com/llvm/llvm-project/main/libcxx/utils/ci/macos-ci-setup)"
|
|
|
|
#
|
|
|
|
# Once the necessary dependencies have been installed, you can switch
|
2021-07-16 23:37:16 +08:00
|
|
|
# to a non-administrator account and run the script again, passing the
|
|
|
|
# --setup-launchd argument. That will install a Launchd agent to run the
|
|
|
|
# BuildKite agent whenever the current user is logged in. You should enable
|
|
|
|
# automatic login for that user, so that if the CI node goes down, the user
|
|
|
|
# is logged back in automatically when the node goes up again, and the
|
|
|
|
# BuildKite agent starts automatically.
|
|
|
|
#
|
|
|
|
# Alternatively, you can simply run the BuildKite agent by hand using:
|
2021-07-14 01:07:45 +08:00
|
|
|
#
|
|
|
|
# $ caffeinate -s buildkite-agent start --build-path /tmp/buildkite-builds
|
2020-10-07 02:13:55 +08:00
|
|
|
|
2021-07-13 03:44:28 +08:00
|
|
|
set -e
|
|
|
|
|
2021-07-16 23:37:16 +08:00
|
|
|
# Install a Launchd agent that will automatically start the BuildKite agent at login
|
|
|
|
if [[ ${1} == "--setup-launchd" ]]; then
|
|
|
|
HOMEBREW_PREFIX="$(brew --prefix)"
|
|
|
|
cat <<EOF > ~/Library/LaunchAgents/libcxx.buildkite-agent.plist
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>libcxx.buildkite-agent</string>
|
|
|
|
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>${HOMEBREW_PREFIX}/bin/buildkite-agent</string>
|
|
|
|
<string>start</string>
|
|
|
|
<string>--build-path</string>
|
|
|
|
<string>${HOME}/libcxx.buildkite-agent/builds</string>
|
|
|
|
</array>
|
|
|
|
|
|
|
|
<key>EnvironmentVariables</key>
|
|
|
|
<dict>
|
|
|
|
<key>PATH</key>
|
|
|
|
<string>${HOMEBREW_PREFIX}/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
|
|
|
|
</dict>
|
|
|
|
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<dict>
|
|
|
|
<key>SuccessfulExit</key>
|
|
|
|
<false/>
|
|
|
|
</dict>
|
2020-10-07 02:13:55 +08:00
|
|
|
|
2021-07-16 23:37:16 +08:00
|
|
|
<key>ProcessType</key>
|
|
|
|
<string>Interactive</string>
|
2020-10-07 02:13:55 +08:00
|
|
|
|
2021-07-16 23:37:16 +08:00
|
|
|
<key>ThrottleInterval</key>
|
|
|
|
<integer>30</integer>
|
2020-10-07 02:13:55 +08:00
|
|
|
|
2021-07-16 23:37:16 +08:00
|
|
|
<key>StandardOutPath</key>
|
|
|
|
<string>${HOME}/libcxx.buildkite-agent/stdout.log</string>
|
2020-10-07 02:13:55 +08:00
|
|
|
|
2021-07-16 23:37:16 +08:00
|
|
|
<key>StandardErrorPath</key>
|
|
|
|
<string>${HOME}/libcxx.buildkite-agent/stderr.log</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOF
|
2021-02-03 03:59:35 +08:00
|
|
|
|
2021-07-16 23:37:16 +08:00
|
|
|
echo "Starting BuildKite agent"
|
|
|
|
launchctl load ~/Library/LaunchAgents/libcxx.buildkite-agent.plist
|
2020-10-07 02:13:55 +08:00
|
|
|
|
2021-07-16 23:37:16 +08:00
|
|
|
else
|
|
|
|
echo "Installing CI dependencies for macOS"
|
|
|
|
|
|
|
|
if [[ -z "${BUILDKITE_AGENT_TOKEN}" ]]; then
|
|
|
|
echo "The BUILDKITE_AGENT_TOKEN environment variable must be set to a BuildKite Agent token when calling this script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Install Homebrew
|
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
|
|
|
|
HOMEBREW_PREFIX="$(brew --prefix)"
|
|
|
|
|
|
|
|
# Install the required tools to run CI
|
|
|
|
brew install sphinx-doc python3 ninja cmake clang-format buildkite/buildkite/buildkite-agent
|
|
|
|
|
|
|
|
# Setup BuildKite Agent config
|
|
|
|
version="$(sw_vers -productVersion | sed -E 's/([0-9]+).([0-9]+).[0-9]+/\1.\2/')"
|
|
|
|
arch="$(uname -m)"
|
|
|
|
sed -i '' "s/token=xxx/token=${BUILDKITE_AGENT_TOKEN}/g" "${HOMEBREW_PREFIX}/etc/buildkite-agent/buildkite-agent.cfg"
|
|
|
|
echo "tags=\"queue=libcxx-builders,arch=${arch},os=macos,os=macos${version}\"" >> "${HOMEBREW_PREFIX}/etc/buildkite-agent/buildkite-agent.cfg"
|
|
|
|
fi
|