From 0f893fab47bb8b91c0986e4e1f3fbace51a57f57 Mon Sep 17 00:00:00 2001 From: Robert McNeil Date: Tue, 16 Jun 2020 11:24:56 -0700 Subject: [PATCH] DEVTOOLS-7321: Don't skip macOS builds based on tag --- .teamcity/build-macos.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.teamcity/build-macos.sh b/.teamcity/build-macos.sh index 43d47195..9ea3e1f4 100755 --- a/.teamcity/build-macos.sh +++ b/.teamcity/build-macos.sh @@ -2,12 +2,6 @@ set -euo pipefail -if ! git describe --tags --exact-match 2>/dev/null ; then - echo "Skipping public release for an untagged commit." - echo "##teamcity[buildStatus status='SUCCESS' text='Skipped due to lack of tag']" - exit 0 -fi - if [[ "$(uname)" != "Darwin" ]] ; then echo "This should be run on macOS" exit 1