-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
69 lines (56 loc) · 1.97 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env groovy
def installBuildRequirements(){
def nodeHome = tool 'nodejs-12.20.0'
env.PATH="${env.PATH}:${nodeHome}/bin"
sh "npm install --global yarn"
sh "npm install --global vsce"
}
def buildVscodeExtension(){
sh "yarn install"
sh "yarn run vscode:prepublish"
}
node('rhel8'){
stage 'Checkout vscode-yaml code'
deleteDir()
git branch: 'release', url: 'https://github.com/redhat-developer/vscode-yaml.git'
stage 'install vscode-yaml build requirements'
installBuildRequirements()
stage 'Build vscode-yaml'
sh "yarn install"
sh "yarn run build"
sh "yarn run check-dependencies"
stage 'Test vscode-yaml for staging'
wrap([$class: 'Xvnc']) {
sh "yarn test --silent"
}
stage "Package vscode-yaml"
def packageJson = readJSON file: 'package.json'
sh "vsce package -o yaml-${packageJson.version}-${env.BUILD_NUMBER}.vsix"
stage 'Upload vscode-yaml to staging'
def vsix = findFiles(glob: '**.vsix')
sh "rsync -Pzrlt --rsh=ssh --protocol=28 ${vsix[0].path} ${UPLOAD_LOCATION}/snapshots/vscode-yaml/"
stash name:'vsix', includes:vsix[0].path
}
node('rhel8'){
if(publishToMarketPlace.equals('true')){
timeout(time:5, unit:'DAYS') {
input message:'Approve deployment?', submitter: 'jpinkney,yvydolob'
}
stage "Publish to Marketplaces"
unstash 'vsix';
def vsix = findFiles(glob: '**.vsix')
// VS Code Marketplace
withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) {
sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
}
// Open-vsx Marketplace
sh "npm install -g ovsx"
withCredentials([[$class: 'StringBinding', credentialsId: 'open-vsx-access-token', variable: 'OVSX_TOKEN']]) {
sh 'ovsx publish -p ${OVSX_TOKEN}' + " ${vsix[0].path}"
}
archive includes:"**.vsix"
stage ("Promote the build to stable") {
sh "rsync -Pzrlt --rsh=ssh --protocol=28 *.vsix* ${UPLOAD_LOCATION}/stable/vscode-yaml/"
}
}
}