This repository has been archived on 2020-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
requestor/Jenkinsfile

24 lines
484 B
Plaintext
Raw Permalink Normal View History

2020-02-05 20:13:43 +01:00
pipeline {
agent any
environment {
VERSION = VersionNumber([
versionNumberString:
'${BUILDS_ALL_TIME}',
2020-05-02 21:51:56 +02:00
versionPrefix: '2.0.',
2020-02-05 20:13:43 +01:00
worstResultForIncrement: 'SUCCESS'
])
}
stages {
2020-02-06 12:05:38 +01:00
stage('Building') {
2020-02-05 20:13:43 +01:00
steps {
script {
currentBuild.displayName = env.VERSION
}
2020-02-06 12:05:38 +01:00
sh 'yarn ci ${VERSION}'
2020-02-05 20:13:43 +01:00
}
}
}
}