Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit e601d19

Browse files
authored
Build fix (#206)
* increase docker build timeout to 1200 * remove pyhon 3.6 from build
1 parent ca5bd6e commit e601d19

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ deploy:
3232
all_branches: true
3333
repo: ibm-functions/runtime-python
3434
- provider: script
35-
script: "./tools/travis/publish.sh ibmfunctions 3.6 master && ./tools/travis/publish.sh ibmfunctions 3.7 master && ./tools/travis/publish.sh ibmfunctions 3.9 master"
35+
script: "./tools/travis/publish.sh ibmfunctions 3.7 master && ./tools/travis/publish.sh ibmfunctions 3.9 master"
3636
on:
3737
branch: master
3838
repo: ibm-functions/runtime-python

gradle/docker.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ext {
2525
dockerRegistry = project.hasProperty('dockerRegistry') ? dockerRegistry + '/' : ''
2626
dockerImageTag = project.hasProperty('dockerImageTag') ? dockerImageTag : 'latest'
2727
dockerImagePrefix = project.hasProperty('dockerImagePrefix') ? dockerImagePrefix : 'whisk'
28-
dockerTimeout = project.hasProperty('dockerTimeout') ? dockerTimeout.toInteger() : 840
28+
dockerTimeout = project.hasProperty('dockerTimeout') ? dockerTimeout.toInteger() : 1200
2929
dockerRetries = project.hasProperty('dockerRetries') ? dockerRetries.toInteger() : 3
3030
dockerBinary = project.hasProperty('dockerBinary') ? [dockerBinary] : ['docker']
3131
dockerBuildArg = ['build']

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
include 'tests'
22

3-
include 'python3.6'
43
include 'python3.7'
54
include 'python3.9'
65

0 commit comments

Comments
 (0)