Skip to content

Commit

Permalink
Fix main branch on Jenkins
Browse files Browse the repository at this point in the history
nodejs-lts has been upgraded from 16 to 18 on Jenkins CI
Builds are very flaky with this version (5 out of 6 failures)
forcing going back to Node 16 lts (even if out of support in few days)

Signed-off-by: Aurélien Pupier <[email protected]>
  • Loading branch information
apupier committed Aug 30, 2023
1 parent a276ad4 commit f682f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env groovy

def installBuildRequirements(){
def nodeHome = tool 'nodejs-lts'
def nodeHome = tool 'nodejs-lts-16'
env.PATH="${env.PATH}:${nodeHome}/bin"
sh "npm install --global yarn"
}
Expand Down

0 comments on commit f682f72

Please sign in to comment.