This repository has been archived on 2021-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
auth-client-helper/Jenkinsfile

24 lines
484 B
Plaintext
Raw Normal View History

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