snippeteer/Jenkinsfile

24 lines
484 B
Plaintext
Raw Normal View History

2020-02-05 20:16:25 +01:00
pipeline {
agent any
environment {
VERSION = VersionNumber([
2020-02-06 17:36:09 +01:00
versionNumberString:
2020-02-05 20:16:25 +01:00
'${BUILDS_ALL_TIME}',
2020-04-15 20:21:00 +02:00
versionPrefix: '1.2.',
2020-02-05 20:16:25 +01:00
worstResultForIncrement: 'SUCCESS'
])
}
stages {
2020-02-06 17:36:09 +01:00
stage('Building') {
2020-02-05 20:16:25 +01:00
steps {
script {
currentBuild.displayName = env.VERSION
}
2020-02-06 17:36:09 +01:00
sh 'yarn ci ${VERSION}'
2020-02-05 20:16:25 +01:00
}
}
}
}