We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebe8cce commit 761bff3Copy full SHA for 761bff3
1 file changed
.travis.yml
@@ -15,11 +15,11 @@ before_script:
15
- pushd sc-docker
16
- python3 setup.py bdist_wheel
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
+ - '[ -f /tmp/sc-docker/starcraft.zip ] && (cp /tmp/sc-docker/starcraft.zip scbw/local_docker && echo "Using cached starcraft.zip")'
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
+ - "[ -f /tmp/sc-docker/starcraft.zip ] || cp sc-docker/scbw/local_docker/starcraft.zip /tmp/sc-docker/starcraft.zip"
23
- scbw.play --install
24
script:
25
- sh mvnw clean install
0 commit comments