mirror of
https://github.com/Homebrew/brew.git
synced 2024-11-25 16:33:34 +08:00
496ece235a
Ubuntu 18.04 is EOL now, so stop building devcontainers for it. Also adjust some dates in the documentation.
46 lines
1.1 KiB
Bash
Executable File
46 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# fix permissions so Homebrew and Bundler don't complain
|
|
sudo chmod -R g-w,o-w /home/linuxbrew
|
|
|
|
# everything below is too slow to do unless prebuilding so skip it
|
|
CODESPACES_ACTION_NAME="$(jq --raw-output '.ACTION_NAME' /workspaces/.codespaces/shared/environment-variables.json)"
|
|
if [[ "${CODESPACES_ACTION_NAME}" != "createPrebuildTemplate" ]]
|
|
then
|
|
echo "Skipping slow items, not prebuilding."
|
|
exit 0
|
|
fi
|
|
|
|
# install Homebrew's development gems
|
|
brew install-bundler-gems --groups=all
|
|
|
|
# install Homebrew formulae we might need
|
|
brew install shellcheck shfmt gh gnu-tar
|
|
|
|
# cleanup any mess
|
|
brew cleanup
|
|
|
|
# actually tap homebrew/core, no longer done by default
|
|
brew tap --force homebrew/core
|
|
# tap some other repos so codespaces can be used for developing multiple taps
|
|
brew tap homebrew/bundle
|
|
brew tap homebrew/services
|
|
|
|
# install some useful development things
|
|
sudo apt-get update
|
|
|
|
apt_get_install() {
|
|
sudo apt-get install -y \
|
|
-o Dpkg::Options::=--force-confdef \
|
|
-o Dpkg::Options::=--force-confnew \
|
|
"$@"
|
|
}
|
|
|
|
apt_get_install \
|
|
openssh-server \
|
|
zsh
|
|
|
|
# Start the SSH server so that `gh cs ssh` works.
|
|
sudo service ssh start
|