We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c9547 commit 60a4737Copy full SHA for 60a4737
scripts/should-skip-build
@@ -139,8 +139,15 @@ def should_build_nightly?
139
anything_changed_yesterday?
140
end
141
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
+
148
# checks if the native build needs to be run
149
def should_build?
150
+ return true if tagged_build?
151
return should_build_nightly? if ENV['IS_NIGHTLY']
152
153
# Find the oldest common revision between HEAD's parent and our
0 commit comments