24 lines
433 B
Plaintext
24 lines
433 B
Plaintext
|
@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',
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|