We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e6616d commit 85e8cb5Copy full SHA for 85e8cb5
.travis.yml
@@ -4,6 +4,9 @@ python:
4
- "3.6"
5
services:
6
- docker
7
+cache:
8
+ directories:
9
+ - /tmp/sc-docker
10
before_install:
11
- jdk_switcher use oraclejdk8
12
before_script:
@@ -12,9 +15,12 @@ before_script:
15
- pushd sc-docker
13
16
- python3 setup.py bdist_wheel
14
17
- pip3 install dist/scbw*.whl
18
+ - mkdir -p /tmp/sc-docker
19
+ - if [ -e /tmp/sc-docker/starcraft.zip ]; then cp /tmp/sc-docker/starcraft.zip scbw/local_docker; fi
20
- cd docker
21
- ./build_images.sh
22
- popd
23
+ - if [ ! -e /tmp/sc-docker/starcraft.zip ]; then cp scbw/local_docker/starcraft.zip /tmp/sc-docker/starcraft.zip; fi
24
- scbw.play --install
25
script:
26
- sh mvnw clean install
0 commit comments