Fix fastlane builds
the file with the version number has been moved to subdirectory and a symlink to it is created, but after the version number is fetched from it where it used to be Signed-off-by: Eric Dvorsak <eric@dvorsak.fr>
This commit is contained in:
parent
a3c25163be
commit
0530f9c8dd
|
@ -12,7 +12,6 @@ def installJSDeps() {
|
|||
def installed = false
|
||||
while (!installed && attempt <= maxAttempts) {
|
||||
println "#${attempt} attempt to install npm deps"
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
sh 'npm install'
|
||||
installed = fileExists('node_modules/web3/index.js')
|
||||
attemp = attempt + 1
|
||||
|
@ -36,12 +35,12 @@ timeout(90) {
|
|||
|
||||
checkout scm
|
||||
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
|
||||
sh 'git fetch --tags'
|
||||
sh 'rm -rf node_modules'
|
||||
sh 'cp .env.nightly .env'
|
||||
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
installJSDeps()
|
||||
|
||||
sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack'
|
||||
|
|
|
@ -12,7 +12,6 @@ def installJSDeps() {
|
|||
def installed = false
|
||||
while (!installed && attempt <= maxAttempts) {
|
||||
println "#${attempt} attempt to install npm deps"
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
sh 'npm install'
|
||||
installed = fileExists('node_modules/web3/index.js')
|
||||
attemp = attempt + 1
|
||||
|
@ -36,13 +35,13 @@ timeout(90) {
|
|||
|
||||
checkout scm
|
||||
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
|
||||
sh 'git fetch --tags'
|
||||
|
||||
sh 'rm -rf node_modules'
|
||||
sh 'cp .env.prod .env'
|
||||
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
installJSDeps()
|
||||
|
||||
sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack'
|
||||
|
|
|
@ -12,7 +12,6 @@ def installJSDeps() {
|
|||
def installed = false
|
||||
while (!installed && attempt <= maxAttempts) {
|
||||
println "#${attempt} attempt to install npm deps"
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
sh 'npm install'
|
||||
installed = fileExists('node_modules/web3/index.js')
|
||||
attemp = attempt + 1
|
||||
|
@ -40,13 +39,13 @@ timeout(90) {
|
|||
|
||||
checkout scm
|
||||
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
|
||||
sh 'git fetch --tags'
|
||||
|
||||
sh 'rm -rf node_modules'
|
||||
sh 'cp .env.prod .env'
|
||||
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
installJSDeps()
|
||||
|
||||
sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack'
|
||||
|
|
|
@ -12,7 +12,6 @@ def installJSDeps() {
|
|||
def installed = false
|
||||
while (!installed && attempt <= maxAttempts) {
|
||||
println "#${attempt} attempt to install npm deps"
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
sh 'npm install'
|
||||
installed = fileExists('node_modules/web3/index.js')
|
||||
attemp = attempt + 1
|
||||
|
@ -39,13 +38,13 @@ timeout(90) {
|
|||
|
||||
checkout scm
|
||||
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
|
||||
sh 'git fetch --tags'
|
||||
|
||||
sh 'rm -rf node_modules'
|
||||
sh 'cp .env.prod .env'
|
||||
|
||||
sh 'scripts/prepare-for-platform.sh mobile'
|
||||
version = readFile("${env.WORKSPACE}/VERSION").trim()
|
||||
installJSDeps()
|
||||
|
||||
sh 'mvn -f modules/react-native-status/ios/RCTStatus dependency:unpack'
|
||||
|
|
Loading…
Reference in New Issue