Skip to content

Commit

Permalink
Default timeout value as String
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Gréau committed Mar 20, 2017
1 parent 13f7e67 commit b7f6fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/exoCI.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def call(body) {
def GIT_CREDENTIALS_ID = utils.getValue('gitCredentialsId', 'ciagent', config, env)
def DOCKER_RUN_PARAMS = utils.getValue('dockerRunParams', '', config, env)
def JOB_NAME = env.JOB_NAME.replaceAll('/','-')
def BUILD_TIMEOUT = Integer.parseInt(utils.getValue('buildTimeout', 60, config, env))
def BUILD_TIMEOUT = Integer.parseInt(utils.getValue('buildTimeout', "60", config, env))

// required values
def DOCKER_IMAGE = utils.getValue('dockerImage', '', config, env)
Expand Down

0 comments on commit b7f6fc1

Please sign in to comment.