Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,19 @@ steps:
brew install docker
brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release
brew update
# Homebrew 5.2+ requires explicit trust for third-party taps. Run this
# after 'brew update' so the trust command is available even if the runner
# image shipped an older Homebrew version.
brew trust microsoft/mssql-release
HOMEBREW_ACCEPT_EULA=Y brew install mssql-tools18

# Fail fast if sqlcmd was not installed (e.g. tap-trust or formula error).
# Without this check the script would loop for ~6 minutes trying to connect.
if ! command -v sqlcmd &>/dev/null; then
echo "ERROR: sqlcmd is not on PATH after brew install. Check the mssql-tools18 installation above."
exit 1
fi

# Start Colima with Virtualization.framework for x86_64 binary translation
# on Apple Silicon. Rosetta/binfmt emulation is enabled by default in
# Colima >= 0.8 when using --vm-type vz, which is dramatically faster than
Expand Down
Loading