Skip to content

Commit

Permalink
FABN-1070 NodeSDK use node.js 8.14.0
Browse files Browse the repository at this point in the history
Update build scripts to use node 8.14.0

Change-Id: If41bdfbec0eac4e9adf726dcce78a1cd14083c85
Signed-off-by: Bret Harrison <[email protected]>
  • Loading branch information
harrisob committed Dec 14, 2018
1 parent 89e8c4b commit e15c2f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile.x
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ node ('hyp-x') { // trigger build on x86_64 node
timestamps {
try {
def ROOTDIR = pwd() // workspace dir (/w/workspace/<job_name>)
def nodeHome = tool 'nodejs-8.11.3'
def nodeHome = tool 'nodejs-8.14.0'
env.VERSION = sh(returnStdout: true, script: 'curl -O https://raw.githubusercontent.com/hyperledger/fabric/master/Makefile && cat Makefile | grep "BASE_VERSION =" | cut -d "=" -f2').trim()
env.VERSION = "$VERSION" // BASE_VERSION from fabric Makefile
env.ARCH = "amd64"
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.z
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ node('hyp-z') {
try {

def ROOTDIR = pwd() // workspace dir (/w/workspace/<job_name>
env.NODE_VER = "8.11.3"
env.NODE_VER = "8.14.0"
// Fetch the BASE_VERSION from fabric master branch to pull images from nexus
env.VERSION = sh(returnStdout: true, script: 'curl -O https://raw.githubusercontent.com/hyperledger/fabric/master/Makefile && cat Makefile | grep "BASE_VERSION =" | cut -d "=" -f2').trim()
env.VERSION = "$VERSION" // BASE_VERSION from fabric Makefile
Expand Down

0 comments on commit e15c2f5

Please sign in to comment.