aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-02-09 17:11:09 +0800
committerGitHub <noreply@github.com>2018-02-09 17:11:09 +0800
commit0084777038a88109bbe7cc717820e26ad040bda2 (patch)
tree9c00bc66a21127ae54e6cc530806ee8525751967
parent9b61fb2e99a29ae97f6c29bc7309d70622b73886 (diff)
parent4777fefc0970a74301d7c02e3b2a6a2d0b9ccbca (diff)
downloaddexon-solidity-0084777038a88109bbe7cc717820e26ad040bda2.tar.gz
dexon-solidity-0084777038a88109bbe7cc717820e26ad040bda2.tar.zst
dexon-solidity-0084777038a88109bbe7cc717820e26ad040bda2.zip
Merge pull request #3470 from ethereum/circle
Run regular x86 build via circle.
-rw-r--r--circle.yml51
1 files changed, 50 insertions, 1 deletions
diff --git a/circle.yml b/circle.yml
index db685da1..d1c8e35f 100644
--- a/circle.yml
+++ b/circle.yml
@@ -1,6 +1,6 @@
version: 2
jobs:
- build:
+ build_emscripten:
docker:
- image: trzeci/emscripten:sdk-tag-1.37.21-64bit
steps:
@@ -48,3 +48,52 @@ jobs:
- store_artifacts:
path: build/solc/soljson.js
destination: soljson.js
+ build_x86:
+ docker:
+ - image: buildpack-deps:artful
+ steps:
+ - checkout
+ - run:
+ name: Install build dependencies
+ command: |
+ apt-get -qq update
+ apt-get -qy install ccache cmake libboost-all-dev libz3-dev
+ - run:
+ name: Init submodules
+ command: |
+ git submodule update --init
+ - run:
+ name: Store commit hash and prerelease
+ command: |
+ date -u +"nightly.%Y.%-m.%-d" > prerelease.txt
+ echo -n "$CIRCLE_SHA1" > commit_hash.txt
+ - restore_cache:
+ key: ccache-{{ arch }}-{{ .Branch }}
+ key: ccache-{{ arch }}
+ key: ccache
+ - run:
+ name: Build
+ command: ./scripts/build.sh RelWithDebInfo
+ - save_cache:
+ 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
+ - store_test_results:
+ path: test_results/
+
+workflows:
+ version: 2
+ build_all:
+ jobs:
+ - build_emscripten
+ - build_x86