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.
2 parents 60e4a56 + 55cdd4d commit ebe8cceCopy full SHA for ebe8cce
.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,11 @@ before_script:
15
- pushd sc-docker
13
16
- python3 setup.py bdist_wheel
14
17
- pip3 install dist/scbw*.whl
18
+ - if [ -e /tmp/sc-docker/starcraft.zip ]; then cp /tmp/sc-docker/starcraft.zip scbw/local_docker; fi
19
- cd docker
20
- ./build_images.sh
21
- popd
22
+ - if [ ! -e /tmp/sc-docker/starcraft.zip ]; then cp sc-docker/scbw/local_docker/starcraft.zip /tmp/sc-docker/starcraft.zip; fi
23
- scbw.play --install
24
script:
25
- sh mvnw clean install
0 commit comments