Skip to content

Commit

Permalink
use rhel8 instead of rhel7 node on Jenkins
Browse files Browse the repository at this point in the history
See camel-tooling/vscode-wsdl2rest#274 and microsoft/vscode#99492

Signed-off-by: Fred Bricon <fbricon@gmail.com>
  • Loading branch information
fbricon committed Jun 16, 2020
1 parent e02478c commit c7e4f19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def buildVscodeExtension(){
sh "npm run vscode:prepublish"
}

node('rhel7'){
node('rhel8'){
stage 'Build JDT LS'

env.JAVA_HOME="${tool 'openjdk-1.8'}"
Expand All @@ -26,7 +26,7 @@ node('rhel7'){
stash name: 'server_distro', includes :files[0].path
}

node('rhel7'){
node('rhel8'){
stage 'Checkout vscode-java code'
deleteDir()
git url: 'https://github.com/redhat-developer/vscode-java.git'
Expand Down Expand Up @@ -58,7 +58,7 @@ node('rhel7'){
stash name:'vsix', includes:files[0].path
}

node('rhel7'){
node('rhel8'){
if(publishToMarketPlace.equals('true')){
timeout(time:5, unit:'DAYS') {
input message:'Approve deployment?', submitter: 'fbricon'
Expand Down

0 comments on commit c7e4f19

Please sign in to comment.