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 da778be commit c290ee1Copy full SHA for c290ee1
Jenkinsfile
@@ -38,10 +38,10 @@ timestamps {
38
stage('Test') {
39
try {
40
def commit_hash = "main" // default which we want to override
41
- def bptp_tag = "bptp-built"
+ def bptp_tag = "bptp-stable"
42
def response = authenticatedGithubCall("https://api.github.com/repos/snowflakedb/snowflake/git/ref/tags/${bptp_tag}")
43
commit_hash = response.object.sha
44
- // Append the bptp-built commit sha to params
+ // Append the bptp-stable commit sha to params
45
params += [string(name: 'svn_revision', value: commit_hash)]
46
} catch(Exception e) {
47
println("Exception computing commit hash from: ${response}")
0 commit comments