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

25 lines
504 B
Plaintext
Raw Normal View History

2020-02-05 20:13:43 +01:00
pipeline {
agent any
environment {
VERSION = VersionNumber([
versionNumberString:
'${BUILDS_ALL_TIME}',
versionPrefix: '1.1.',
worstResultForIncrement: 'SUCCESS'
])
publish = 0
}
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
}
}
}
}