console-app/Jenkinsfile

24 lines
446 B
Plaintext
Raw Normal View History

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