vega-frontend-monorepo/Jenkinsfile
Mikołaj Młodzikowski 349722d56d
Update Jenkinsfile
2022-10-19 15:40:57 +02:00

24 lines
432 B
Groovy

@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'
}
}
}
}