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 apkUrl = ''
|
||||||
def ipaUrl = ''
|
def ipaUrl = ''
|
||||||
def testPassed = true
|
def testPassed = true
|
||||||
def version;
|
def version
|
||||||
|
def build_no
|
||||||
|
|
||||||
load "$HOME/env.groovy"
|
load "$HOME/env.groovy"
|
||||||
|
|
||||||
|
@ -53,7 +54,7 @@ timeout(90) {
|
||||||
usernameVariable: 'GIT_USER',
|
usernameVariable: 'GIT_USER',
|
||||||
passwordVariable: 'GIT_PASS'
|
passwordVariable: 'GIT_PASS'
|
||||||
]]) {
|
]]) {
|
||||||
def build_no = sh(
|
build_no = sh(
|
||||||
returnStdout: true,
|
returnStdout: true,
|
||||||
script: './scripts/build_no.sh --increment'
|
script: './scripts/build_no.sh --increment'
|
||||||
).trim()
|
).trim()
|
||||||
|
|
|
@ -23,6 +23,7 @@ timeout(90) {
|
||||||
def ipaUrl = ''
|
def ipaUrl = ''
|
||||||
def testPassed = true
|
def testPassed = true
|
||||||
def version
|
def version
|
||||||
|
def build_no
|
||||||
|
|
||||||
load "$HOME/env.groovy"
|
load "$HOME/env.groovy"
|
||||||
|
|
||||||
|
@ -53,7 +54,7 @@ timeout(90) {
|
||||||
usernameVariable: 'GIT_USER',
|
usernameVariable: 'GIT_USER',
|
||||||
passwordVariable: 'GIT_PASS'
|
passwordVariable: 'GIT_PASS'
|
||||||
]]) {
|
]]) {
|
||||||
def build_no = sh(
|
build_no = sh(
|
||||||
returnStdout: true,
|
returnStdout: true,
|
||||||
script: './scripts/build_no.sh --increment'
|
script: './scripts/build_no.sh --increment'
|
||||||
).trim()
|
).trim()
|
||||||
|
|
|
@ -23,6 +23,7 @@ timeout(90) {
|
||||||
def ipaUrl = ''
|
def ipaUrl = ''
|
||||||
def testPassed = true
|
def testPassed = true
|
||||||
def version
|
def version
|
||||||
|
def build_no
|
||||||
|
|
||||||
load "$HOME/env.groovy"
|
load "$HOME/env.groovy"
|
||||||
|
|
||||||
|
@ -57,7 +58,7 @@ timeout(90) {
|
||||||
usernameVariable: 'GIT_USER',
|
usernameVariable: 'GIT_USER',
|
||||||
passwordVariable: 'GIT_PASS'
|
passwordVariable: 'GIT_PASS'
|
||||||
]]) {
|
]]) {
|
||||||
def build_no = sh(
|
build_no = sh(
|
||||||
returnStdout: true,
|
returnStdout: true,
|
||||||
script: './scripts/build_no.sh --increment'
|
script: './scripts/build_no.sh --increment'
|
||||||
).trim()
|
).trim()
|
||||||
|
|
|
@ -23,6 +23,7 @@ timeout(90) {
|
||||||
def ipaUrl = ''
|
def ipaUrl = ''
|
||||||
def testPassed = true
|
def testPassed = true
|
||||||
def version
|
def version
|
||||||
|
def build_no
|
||||||
|
|
||||||
load "$HOME/env.groovy"
|
load "$HOME/env.groovy"
|
||||||
|
|
||||||
|
@ -56,7 +57,7 @@ timeout(90) {
|
||||||
usernameVariable: 'GIT_USER',
|
usernameVariable: 'GIT_USER',
|
||||||
passwordVariable: 'GIT_PASS'
|
passwordVariable: 'GIT_PASS'
|
||||||
]]) {
|
]]) {
|
||||||
def build_no = sh(
|
build_no = sh(
|
||||||
returnStdout: true,
|
returnStdout: true,
|
||||||
script: './scripts/build_no.sh --increment'
|
script: './scripts/build_no.sh --increment'
|
||||||
).trim()
|
).trim()
|
||||||
|
|
Loading…
Reference in New Issue