diff options
author | chriseth <chris@ethereum.org> | 2018-02-10 01:08:29 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-02-10 01:24:12 +0800 |
commit | 937f16afef910f6faf1e29a7dafb5c7c699e4de9 (patch) | |
tree | 0b32b3357a03e4ea24f80f05ecfbf756bbca31dc /circle.yml | |
parent | 981ff308ecfbd596d7f94852462591316bcaa2e7 (diff) | |
download | dexon-solidity-937f16afef910f6faf1e29a7dafb5c7c699e4de9.tar.gz dexon-solidity-937f16afef910f6faf1e29a7dafb5c7c699e4de9.tar.zst dexon-solidity-937f16afef910f6faf1e29a7dafb5c7c699e4de9.zip |
Handle version for solcjs tests.
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -30,10 +30,12 @@ jobs: destination: soljson.js - run: mkdir -p workspace - run: cp build/libsolc/soljson.js workspace/soljson.js + - run: scripts/get_version.sh > workspace/version.txt - persist_to_workspace: root: workspace paths: - soljson.js + - version.txt test_emscripten_solcjs: docker: - image: trzeci/emscripten:sdk-tag-1.37.21-64bit @@ -57,7 +59,7 @@ jobs: name: Test solcjs command: | . /usr/local/nvm/nvm.sh - test/solcjsTests.sh /tmp/workspace/soljson.js + test/solcjsTests.sh /tmp/workspace/soljson.js $(cat /tmp/workspace/version.txt) test_emscripten_external: docker: - image: trzeci/emscripten:sdk-tag-1.37.21-64bit |