diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..cd1b33bd9 --- /dev/null +++ b/Jenkinsfile @@ -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', + } + } + } +}