-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #129797 - workingjubilee:cleanup-apple-ci, r=workingjub…
…ilee Try to reduce space usage in dist CI We have had recurrent CI problems as a result of GitHub adding a new version of Xcode to its runners[^0], which has consumed ~40GB of space which served as padding. Try to reduce the number of Xcodes on our systems, because we only use Xcode 14 in actual practice. Also, try to move files instead of pointlessly copy them when we're at the end of the job. I could not resist addressing a few shellcheck lints while I was at it. [^0]: actions/runner-images#10511
- Loading branch information
Showing
3 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,28 @@ | ||
#!/bin/bash | ||
# This script selects the Xcode instance to use. | ||
# It also tries to do some cleanup in CI jobs of unused Xcodes. | ||
|
||
set -euo pipefail | ||
IFS=$'\n\t' | ||
|
||
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" | ||
|
||
if isMacOS; then | ||
# This additional step is to try to remove an Xcode we aren't using because each one is HUGE | ||
old_xcode="$(xcode-select --print-path)" | ||
old_xcode="${old_xcode%/*}" # pop a dir | ||
old_xcode="${old_xcode%/*}" # twice | ||
if [[ $old_xcode =~ $SELECT_XCODE ]]; then | ||
echo "xcode-select.sh's brutal hack may not be necessary?" | ||
exit 1 | ||
elif [[ $SELECT_XCODE =~ "16" ]]; then | ||
echo "Using Xcode 16? Please fix xcode-select.sh" | ||
exit 1 | ||
fi | ||
if [ $CI ]; then # just in case someone sources this on their real computer | ||
sudo rm -rf "${old_xcode}" | ||
xcode_16="${old_xcode%/*}/Xcode-16.0.0.app" | ||
sudo rm -rf "${xcode_16}" | ||
fi | ||
sudo xcode-select -s "${SELECT_XCODE}" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters