diff options
author | chriseth <chris@ethereum.org> | 2017-03-17 17:34:07 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-03-17 19:33:40 +0800 |
commit | f9792a617187cc8aa6663fd831e319c94588df45 (patch) | |
tree | a11502165df1f6d8774d67e631b5666883087299 /.travis.yml | |
parent | 3f83bb80bfcf40b7a3c9ca9977eb3859c289e6e9 (diff) | |
download | dexon-solidity-f9792a617187cc8aa6663fd831e319c94588df45.tar.gz dexon-solidity-f9792a617187cc8aa6663fd831e319c94588df45.tar.zst dexon-solidity-f9792a617187cc8aa6663fd831e319c94588df45.zip |
Create temporary docker image.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index f0a66255..900321d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -177,10 +177,10 @@ install: - test "$TRAVIS_OS_NAME" != "linux" || (scripts/install_cmake.sh) - echo -n "$TRAVIS_COMMIT" > commit_hash.txt - test $SOLC_DOCKER != On || ( - docker build -t ethereum/solc:build -f scripts/Dockerfile . - tmp_container=$(docker create brainbot-com/solidity-static sh) + docker build -t tmp -f scripts/Dockerfile . + tmp_container=$(docker create tmp sh) mkdir -p upload - docker cp ${tmp_container}:/usr/local/bin/solc upload/ + docker cp ${tmp_container}:/usr/bin/solc upload/ ) before_script: |