feat: Add jenkinsfile to run approbation (relates to: vegaprotocol/devops-infra#1476) (#1781)

* feat: Add jenkinsfile to run approbation (relates to: vegaprotocol/devops-infra#1476)

* Update Jenkinsfile
This commit is contained in:
Mikołaj Młodzikowski 2022-10-19 15:33:24 +02:00 committed by GitHub
parent cc8f052a5b
commit 7c4ce6eb87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

23
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
@Library('vega-shared-library') _
def commitHash = 'UNKNOWN'
pipeline {
agent any
options {
skipDefaultCheckout true
parallelsAlwaysFailFast()
}
stages {
stage('approbation') {
steps {
sh 'printenv'
checkout scm
script {
commitHash = getCommitHash()
}
runApprobation ignoreFailure: false, frontendBranch: commitHash, type: 'frontend',
}
}
}
}