Skip to content

Commit 60a4737

Browse files
committed
ssb: Always build nightlies
Signed-off-by: Kristofer Rye <[email protected]>
1 parent 51c9547 commit 60a4737

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

scripts/should-skip-build

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,15 @@ def should_build_nightly?
139139
anything_changed_yesterday?
140140
end
141141

142+
def tagged_build?
143+
travis = ENV['TRAVIS_TAG'] && !ENV['TRAVIS_TAG'].empty?
144+
circle = ENV['CIRCLE_TAG'] && !ENV['CIRCLE_TAG'].empty?
145+
travis || circle
146+
end
147+
142148
# checks if the native build needs to be run
143149
def should_build?
150+
return true if tagged_build?
144151
return should_build_nightly? if ENV['IS_NIGHTLY']
145152

146153
# Find the oldest common revision between HEAD's parent and our

0 commit comments

Comments
 (0)