fix declaration location of build_no variables
This commit is contained in:
parent
9ac95d3ed8
commit
e54c3c3aed
|
@ -22,7 +22,8 @@ timeout(90) {
|
|||
def apkUrl = ''
|
||||
def ipaUrl = ''
|
||||
def testPassed = true
|
||||
def version;
|
||||
def version
|
||||
def build_no
|
||||
|
||||
load "$HOME/env.groovy"
|
||||
|
||||
|
@ -53,7 +54,7 @@ timeout(90) {
|
|||
usernameVariable: 'GIT_USER',
|
||||
passwordVariable: 'GIT_PASS'
|
||||
]]) {
|
||||
def build_no = sh(
|
||||
build_no = sh(
|
||||
returnStdout: true,
|
||||
script: './scripts/build_no.sh --increment'
|
||||
).trim()
|
||||
|
|
|
@ -23,6 +23,7 @@ timeout(90) {
|
|||
def ipaUrl = ''
|
||||
def testPassed = true
|
||||
def version
|
||||
def build_no
|
||||
|
||||
load "$HOME/env.groovy"
|
||||
|
||||
|
@ -53,7 +54,7 @@ timeout(90) {
|
|||
usernameVariable: 'GIT_USER',
|
||||
passwordVariable: 'GIT_PASS'
|
||||
]]) {
|
||||
def build_no = sh(
|
||||
build_no = sh(
|
||||
returnStdout: true,
|
||||
script: './scripts/build_no.sh --increment'
|
||||
).trim()
|
||||
|
|
|
@ -23,6 +23,7 @@ timeout(90) {
|
|||
def ipaUrl = ''
|
||||
def testPassed = true
|
||||
def version
|
||||
def build_no
|
||||
|
||||
load "$HOME/env.groovy"
|
||||
|
||||
|
@ -57,7 +58,7 @@ timeout(90) {
|
|||
usernameVariable: 'GIT_USER',
|
||||
passwordVariable: 'GIT_PASS'
|
||||
]]) {
|
||||
def build_no = sh(
|
||||
build_no = sh(
|
||||
returnStdout: true,
|
||||
script: './scripts/build_no.sh --increment'
|
||||
).trim()
|
||||
|
|
|
@ -23,6 +23,7 @@ timeout(90) {
|
|||
def ipaUrl = ''
|
||||
def testPassed = true
|
||||
def version
|
||||
def build_no
|
||||
|
||||
load "$HOME/env.groovy"
|
||||
|
||||
|
@ -56,7 +57,7 @@ timeout(90) {
|
|||
usernameVariable: 'GIT_USER',
|
||||
passwordVariable: 'GIT_PASS'
|
||||
]]) {
|
||||
def build_no = sh(
|
||||
build_no = sh(
|
||||
returnStdout: true,
|
||||
script: './scripts/build_no.sh --increment'
|
||||
).trim()
|
||||
|
|
Loading…
Reference in New Issue