vega-frontend-monorepo/Jenkinsfile

24 lines
432 B
Plaintext
Raw Normal View History

@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()
}
2022-10-19 13:40:57 +00:00
runApprobation ignoreFailure: false, frontendBranch: commitHash, type: 'frontend'
}
}
}
}