mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
* [macOS] Refactor the rest of the scripts * Return quotes to config tccdb script * Return quotes to config tccdb script * Revert some changes in ruby scripts * Revert some changes in ruby scripts * Revert some changes chrome script * check errors * check errors 01 * find errors in common-utils * find errors in edge install * find errors in edge install --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
22 lines
856 B
Bash
22 lines
856 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-swiftlint.sh
|
|
## Desc: Install SwiftLint
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
echo "Installing Swiftlint..."
|
|
if is_BigSur; then
|
|
# SwiftLint now requires Swift 5.6 or higher to build, and macOS 12 or higher to run https://github.com/realm/SwiftLint/releases/tag/0.49.0
|
|
COMMIT=d1d5743344227fe6e3c37cfba19f0cfe15a9448a
|
|
FORMULA_URL="https://raw.githubusercontent.com/Homebrew/homebrew-core/$COMMIT/Formula/swiftlint.rb"
|
|
|
|
curl -fsSL $FORMULA_URL > $(find $(brew --repository) -name swiftlint.rb)
|
|
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_FROM_API=1 brew install swiftlint
|
|
else
|
|
brew_smart_install "swiftlint"
|
|
fi
|
|
|
|
invoke_tests "Linters" "SwiftLint"
|