Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
Forest Nguyen committed Dec 28, 2023
1 parent b03c76f commit 72ee391
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pipeline {
agent any

environment {
PATH = "/usr/local/bin:$PATH"
PATH = "/usr/bin:$PATH"
}

stages {
Expand All @@ -22,16 +22,16 @@ pipeline {
}
}

stage('Build') {
steps {
script {
nodejs(nodeJSInstallationName: 'YourNodeJSInstallation') {
sh 'npx react-native build-android'
sh 'npx react-native build-ios'
}
}
}
}
// stage('Build') {
// steps {
// script {
// nodejs(nodeJSInstallationName: 'YourNodeJSInstallation') {
// sh 'npx react-native build-android'
// sh 'npx react-native build-ios'
// }
// }
// }
// }

// Add more stages as needed (e.g., testing, deployment)
}
Expand Down

0 comments on commit 72ee391

Please sign in to comment.