36 строки
949 B
Bash
Executable File
36 строки
949 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/.."
|
|
WORKSPACE=$(pwd)
|
|
|
|
report_error ()
|
|
{
|
|
echo "🔥 [Provisioning failed]($BUILD_URL/console) 🔥" >> "$WORKSPACE/jenkins/pr-comments.md"
|
|
}
|
|
trap report_error ERR
|
|
|
|
# SC2154: ghprbPullId is referenced but not assigned.
|
|
# shellcheck disable=SC2154
|
|
if test -n "$ghprbPullId" && ./jenkins/fetch-pr-labels.sh --check=skip-public-jenkins; then
|
|
echo "Skipping provisioning diff because the label 'skip-public-jenkins' was found."
|
|
exit 0
|
|
fi
|
|
|
|
# Get all our dependencies
|
|
make reset
|
|
|
|
# Make sure everything is pristine
|
|
make git-clean-all
|
|
|
|
# Print a list of our dpendencies
|
|
make print-versions
|
|
|
|
# Provision external dependencies
|
|
./system-dependencies.sh --provision-all
|
|
|
|
sudo rm -Rf /Developer/MonoTouch
|
|
sudo rm -Rf /Library/Frameworks/Xamarin.iOS.framework
|
|
sudo rm -Rf /Library/Frameworks/Xamarin.Mac.framework
|
|
|
|
echo "✅ [Provisioning succeeded]($BUILD_URL/console)" >> "$WORKSPACE/jenkins/pr-comments.md"
|