Skip to content

Commit

Permalink
CI: TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
thedataking committed Nov 30, 2023
1 parent 503a75b commit 05f7f74
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions scripts/provision_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@ export HOMEBREW_NO_AUTO_UPDATE=1
# NOTE: Pin LLVM to a known good version since new releases
# tend not to be backwards compatible
# `bash` needed b/c macOS ships with bash 3, which doesn't support arrays properly
hb_packages=(python cmake ninja gpg llvm bash)
for item in "${hb_packages[@]}"; do
brew info "${item}" | grep 'Not installed' > /dev/null && brew install "${item}"
done
brew install python cmake ninja gpg llvm bash

type -P "pip3" >/dev/null || {
echo >&2 "pip3 not in path."; exit 1;
}
# type -P "pip3" >/dev/null || {
# echo >&2 "pip3 not in path."; exit 1;
# }

# Python 3 packages
pip3 install --user --upgrade pip
Expand Down

0 comments on commit 05f7f74

Please sign in to comment.