vega-frontend-monorepo/Jenkinsfile
Mikołaj Młodzikowski 5d04efe52d
Update Jenkinsfile
2022-10-19 15:48:43 +02:00

21 lines
371 B
Groovy

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