add jenkinsfile
This commit is contained in:
parent
d418ef9e90
commit
328d734e24
26
asset_jenkinsfile.js
Normal file
26
asset_jenkinsfile.js
Normal file
@ -0,0 +1,26 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = `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}'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
Loading…
x
Reference in New Issue
Block a user