Skip to content

Commit 0b8a8eb

Browse files
committed
Upgrade infrastructure to support GLIBCXX 3.4.21.
- Use rhel8 nodes instead of rhel7 on Jenkins infra Signed-off-by: Roland Grunberg <[email protected]>
1 parent 91933cf commit 0b8a8eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def buildLemMinXBinary() {
1717
load "NativeImage.jenkins"
1818
}
1919

20-
node('rhel7'){
20+
node('rhel8'){
2121
sh "curl -Lo package.json https://raw.githubusercontent.com/${params.FORK}/vscode-xml/${params.BRANCH}/package.json"
2222
def packageJson = readJSON file: 'package.json'
2323
def serverVersion = packageJson?.xmlServer?.version
@@ -41,7 +41,7 @@ node('rhel7'){
4141
stash name: 'server_distro', includes :files[0].path
4242
}
4343

44-
node('rhel7'){
44+
node('rhel8'){
4545
stage 'Checkout vscode-xml code'
4646
deleteDir()
4747
def gitUrl = "${GIT_REPO}"
@@ -86,7 +86,7 @@ node('rhel7'){
8686
stash name:'vsix', includes:vsix[0].path
8787
}
8888

89-
node('rhel7'){
89+
node('rhel8'){
9090
if(publishToMarketPlace.equals('true')){
9191
timeout(time:2, unit:'DAYS') {
9292
input message:'Approve deployment?', submitter: 'fbricon,rgrunber,azerr,davthomp'
@@ -111,4 +111,4 @@ node('rhel7'){
111111
// copy this stable build to Akamai-mirrored /static/ URL, so staging can be cleaned out more easily
112112
sh "rsync -Pzrlt --rsh=ssh --protocol=28 ${vsix[0].path} ${UPLOAD_LOCATION}/static/vscode-xml/stable/"
113113
}// if publishToMarketPlace
114-
}
114+
}

0 commit comments

Comments
 (0)