diff options
author | chriseth <chris@ethereum.org> | 2018-02-23 21:29:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-23 21:29:10 +0800 |
commit | 272262ea9908f2c8a12e0a8e367393f2a49ba3ca (patch) | |
tree | e581a2e3ef9f4e6771c8aeef889b0d930650142d /circle.yml | |
parent | cae6cc2c3378815e9ed488b7ac0e126cd1bf9630 (diff) | |
parent | b80baa80021b993ba21f3afe041d5cd0fc9b015b (diff) | |
download | dexon-solidity-272262ea9908f2c8a12e0a8e367393f2a49ba3ca.tar.gz dexon-solidity-272262ea9908f2c8a12e0a8e367393f2a49ba3ca.tar.zst dexon-solidity-272262ea9908f2c8a12e0a8e367393f2a49ba3ca.zip |
Merge pull request #3499 from ethereum/runEndToEndOnCircle
Run EndToEnd tests on circle, too.
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -93,7 +93,7 @@ jobs: name: Install build dependencies command: | apt-get -qq update - apt-get -qy install ccache cmake libboost-all-dev libz3-dev + apt-get -qy install ccache cmake libboost-all-dev libz3-dev libleveldb1v5 - run: name: Init submodules command: | @@ -114,16 +114,10 @@ jobs: key: ccache-{{ arch }}-{{ .Branch }} paths: - ~/.ccache - - run: - name: Commandline tests - command: test/cmdlineTests.sh - run: mkdir -p test_results - run: - name: Test without optimizer (exclude IPC tests) - command: build/test/soltest --logger=JUNIT,test_suite,test_results/no_opt.xml -- --no-ipc - - run: - name: Test with optimizer (exclude IPC tests) - command: build/test/soltest --logger=JUNIT,test_suite,test_results/opt.xml -- --optimize --no-ipc + name: Tests + command: scripts/tests.sh --junit_report test_results - store_test_results: path: test_results/ - store_artifacts: |