forked from redhat-developer/vscode-yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
55 lines (44 loc) · 1.4 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
#!/usr/bin/env groovy
def installBuildRequirements(){
def nodeHome = tool 'nodejs-7.7.4'
env.PATH="${env.PATH}:${nodeHome}/bin"
sh "npm install -g [email protected]"
sh "npm install -g vsce"
}
def buildVscodeExtension(){
sh "npm install"
sh "npm run vscode:prepublish"
}
node('rhel7'){
stage 'Checkout vscode-yaml code'
deleteDir()
git url: 'https://github.com/redhat-developer/vscode-yaml.git'
stage 'install vscode-yaml build requirements'
installBuildRequirements()
stage 'Build vscode-yaml'
sh "npm install"
sh "npm run vscode:prepublish"
stage 'Test vscode-yaml for staging'
wrap([$class: 'Xvnc']) {
sh "npm 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}"
stash name:'vsix', includes:vsix[0].path
}
node('rhel7'){
timeout(time:5, unit:'DAYS') {
input message:'Approve deployment?', submitter: 'jpinkney'
}
stage "Publish to Marketplace"
unstash 'vsix';
withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) {
def vsix = findFiles(glob: '**.vsix')
sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
}
archive includes:"**.vsix"
}