utilities/Jenkinsfile

24 lines
484 B
Plaintext
Raw Normal View History

2020-03-04 12:13:28 +01:00
pipeline {
agent any
environment {
VERSION = VersionNumber([
versionNumberString:
'${BUILDS_ALL_TIME}',
versionPrefix: '1.3.',
2020-03-04 12:13:28 +01:00
worstResultForIncrement: 'SUCCESS'
])
}
stages {
stage('Building') {
steps {
script {
currentBuild.displayName = env.VERSION
}
sh 'yarn ci ${VERSION}'
}
}
}
}