-
Notifications
You must be signed in to change notification settings - Fork 184
/
Jenkinsfile
80 lines (59 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env groovy
def installBuildRequirements(){
def nodeHome = tool 'nodejs-18.16.1'
env.PATH="${env.PATH}:${nodeHome}/bin"
sh 'echo "@RHEcosystemAppEng:registry=https://npm.pkg.github.com" > ~/.npmrc'
sh 'echo "@fabric8-analytics:registry=https://npm.pkg.github.com" >> ~/.npmrc'
sh "npm install -g typescript"
sh "npm install -g --force @vscode/vsce"
}
def buildVscodeExtension(){
sh "npm install"
sh "npm run vscode:prepublish"
}
node('rhel8'){
stage 'Checkout fabric8-analytics-vscode-extension code'
deleteDir()
git url: 'https://github.com/fabric8-analytics/fabric8-analytics-vscode-extension.git'
stage 'install fabric8-analytics-vscode-extension build requirements'
installBuildRequirements()
withCredentials([[$class: 'StringBinding', credentialsId: 'github-npm-pat', variable: 'NPM_TOKEN']]) {
sh 'echo "//npm.pkg.github.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc'
}
stage 'Build fabric8-analytics-vscode-extension'
sh "npm install"
sh "npm run vscode:prepublish"
stage 'Test fabric8-analytics-vscode-extension for staging'
wrap([$class: 'Xvnc']) {
sh "npm run test-compile"
sh "npm test --silent"
}
stage "Package fabric8-analytics-vscode-extension"
def packageJson = readJSON file: 'package.json'
sh "vsce package -o fabric8-analytics-${packageJson.version}-${env.BUILD_NUMBER}.vsix"
def vsix = findFiles(glob: '**.vsix')
stage 'Upload fabric8-analytics-vscode-extension to snapshots'
sh "sftp -C ${UPLOAD_LOCATION}/snapshots/vscode-dependency-analytics/ <<< \$'put -p ${vsix[0].path}'"
// Publishing part
if(publishToMarketPlace.equals('true')){
timeout(time:5, unit:'DAYS') {
input message:'Approve deployment?', submitter: 'jparsai, tfigenbl, zgrinber, ishishov, vbelouso'
}
stage "Publish to Marketplace"
// VS Code Marketplace
withCredentials([[$class: 'StringBinding', credentialsId: 'vscode_java_marketplace', variable: 'TOKEN']]) {
sh 'vsce publish -p ${TOKEN} --packagePath' + " ${vsix[0].path}"
}
stage 'Upload fabric8-analytics-vscode-extension to stable'
// jboss tools download locations
sh "sftp -C ${UPLOAD_LOCATION}/stable/vscode-dependency-analytics/ <<< \$'put -p ${vsix[0].path}'"
}
if(publishToOVSX.equals('true')){
stage "Publish to OVSX"
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"
}