solidity/.circleci/config.yml

303 lines
8.6 KiB
YAML
Raw Normal View History

2018-04-03 15:34:38 +00:00
defaults:
# The default for tags is to not run, so we have to explicitly match a filter.
- build_on_tags: &build_on_tags
filters:
tags:
only: /.*/
2018-05-02 13:42:34 +00:00
- setup_prerelease_commit_hash: &setup_prerelease_commit_hash
name: Store commit hash and prerelease
command: |
if [ "$CIRCLE_BRANCH" = release -o -n "$CIRCLE_TAG" ]; then echo -n > prerelease.txt; else date -u +"nightly.%Y.%-m.%-d" > prerelease.txt; fi
echo -n "$CIRCLE_SHA1" > commit_hash.txt
- run_build: &run_build
name: Build
command: |
mkdir -p build
cd build
2018-07-23 11:29:55 +00:00
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo $CMAKE_OPTIONS
make -j4
- run_tests: &run_tests
name: Tests
command: scripts/tests.sh --junit_report test_results
2018-05-02 13:42:34 +00:00
- solc_artifact: &solc_artifact
path: build/solc/solc
destination: solc
2018-05-02 13:42:34 +00:00
- all_artifacts: &all_artifacts
root: build
paths:
- solc/solc
- test/soltest
- test/tools/solfuzzer
2018-04-03 15:34:38 +00:00
2017-08-16 19:20:46 +00:00
version: 2
jobs:
2018-02-08 15:12:04 +00:00
build_emscripten:
2017-08-16 19:20:46 +00:00
docker:
2017-09-14 21:13:37 +00:00
- image: trzeci/emscripten:sdk-tag-1.37.21-64bit
environment:
TERM: xterm
2017-08-16 19:20:46 +00:00
steps:
- checkout
2017-09-14 21:13:37 +00:00
- restore_cache:
name: Restore Boost build
key: &boost-cache-key emscripten-boost-{{ checksum "scripts/travis-emscripten/install_deps.sh" }}{{ checksum "scripts/travis-emscripten/build_emscripten.sh" }}
- run:
name: Bootstrap Boost
command: |
scripts/travis-emscripten/install_deps.sh
- run:
name: Build
command: |
scripts/travis-emscripten/build_emscripten.sh
- save_cache:
name: Save Boost build
key: *boost-cache-key
paths:
- boost_1_57_0
2018-02-08 22:43:05 +00:00
- store_artifacts:
path: build/libsolc/soljson.js
destination: soljson.js
- run: mkdir -p workspace
- run: cp build/libsolc/soljson.js workspace/soljson.js
2018-02-09 17:08:29 +00:00
- run: scripts/get_version.sh > workspace/version.txt
2018-02-08 22:43:05 +00:00
- persist_to_workspace:
root: workspace
paths:
- soljson.js
2018-02-09 17:08:29 +00:00
- version.txt
2018-02-09 16:21:36 +00:00
test_emscripten_solcjs:
2018-02-08 22:43:05 +00:00
docker:
- image: trzeci/emscripten:sdk-tag-1.37.21-64bit
environment:
TERM: xterm
2018-02-08 22:43:05 +00:00
steps:
- checkout
- attach_workspace:
at: /tmp/workspace
- run:
name: Install external tests deps
command: |
apt-get -qq update
apt-get -qy install netcat curl
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | NVM_DIR=/usr/local/nvm bash
2018-02-09 16:21:36 +00:00
export NVM_DIR="/usr/local/nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
nvm --version
2018-02-12 13:45:33 +00:00
nvm install 8
2018-02-09 16:21:36 +00:00
node --version
npm --version
2018-02-08 22:43:05 +00:00
- run:
2018-02-09 16:21:36 +00:00
name: Test solcjs
2018-02-08 22:43:05 +00:00
command: |
2018-02-09 16:21:36 +00:00
. /usr/local/nvm/nvm.sh
2018-02-09 17:08:29 +00:00
test/solcjsTests.sh /tmp/workspace/soljson.js $(cat /tmp/workspace/version.txt)
2018-02-09 16:21:36 +00:00
test_emscripten_external:
docker:
- image: trzeci/emscripten:sdk-tag-1.37.21-64bit
environment:
TERM: xterm
2018-02-09 16:21:36 +00:00
steps:
- checkout
- attach_workspace:
at: /tmp/workspace
- run:
name: Install external tests deps
command: |
apt-get -qq update
apt-get -qy install netcat curl
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | NVM_DIR=/usr/local/nvm bash
2018-02-08 22:43:05 +00:00
export NVM_DIR="/usr/local/nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
nvm --version
2018-02-12 13:45:33 +00:00
nvm install 8
2018-02-08 22:43:05 +00:00
node --version
npm --version
2017-09-14 21:13:37 +00:00
- run:
2018-02-09 16:21:36 +00:00
name: External tests
2017-09-14 21:13:37 +00:00
command: |
. /usr/local/nvm/nvm.sh
2018-02-22 14:35:44 +00:00
test/externalTests.sh /tmp/workspace/soljson.js || test/externalTests.sh /tmp/workspace/soljson.js
build_x86_linux:
2018-02-08 15:12:04 +00:00
docker:
- image: buildpack-deps:artful
environment:
TERM: xterm
2018-07-23 11:29:55 +00:00
CMAKE_OPTIONS: -DCOVERAGE=ON
2018-02-08 15:12:04 +00:00
steps:
- checkout
- run:
name: Install build dependencies
command: |
apt-get -qq update
2018-03-15 22:06:19 +00:00
apt-get -qy install cmake libboost-regex-dev libboost-filesystem-dev libboost-test-dev libboost-system-dev libboost-program-options-dev libz3-dev
./scripts/install_obsolete_jsoncpp_1_7_4.sh
2018-05-02 13:42:34 +00:00
- run: *setup_prerelease_commit_hash
- run: *run_build
- store_artifacts: *solc_artifact
- persist_to_workspace:
root: build
paths:
- "*"
build_x86_mac:
macos:
xcode: "9.0"
environment:
TERM: xterm
steps:
- checkout
- run:
name: Install build dependencies
2018-03-05 21:56:35 +00:00
command: |
brew update
brew upgrade
brew unlink python
brew install z3
brew install boost
brew install cmake
brew install wget
./scripts/install_obsolete_jsoncpp_1_7_4.sh
2018-05-02 13:42:34 +00:00
- run: *setup_prerelease_commit_hash
- run: *run_build
- store_artifacts: *solc_artifact
- persist_to_workspace: *all_artifacts
test_check_spelling:
docker:
- image: circleci/python:3.6
environment:
TERM: xterm
steps:
- checkout
- attach_workspace:
at: build
- run:
name: Install dependencies
command: |
pip install --user codespell
- run:
name: Check spelling
command: ~/.local/bin/codespell -S "*.enc,.git" -I ./scripts/codespell_whitelist.txt
test_check_style:
docker:
- image: buildpack-deps:artful
steps:
- checkout
- run:
name: Check for trailing whitespace
command: ./scripts/check_style.sh
test_buglist:
docker:
- image: circleci/node
environment:
TERM: xterm
steps:
- checkout
- run:
name: JS deps
command: |
npm install download
npm install JSONPath
npm install mktemp
- run:
name: Test buglist
command: ./test/buglistTests.js
test_x86_linux:
docker:
- image: buildpack-deps:artful
environment:
TERM: xterm
steps:
- checkout
- attach_workspace:
at: build
- run:
name: Install dependencies
command: |
apt-get -qq update
2018-07-23 11:29:55 +00:00
apt-get -qy install libz3-dev libleveldb1v5 python-pip
pip install codecov
2018-02-08 23:36:05 +00:00
- run: mkdir -p test_results
2018-07-23 11:29:55 +00:00
- run:
name: Test type checker
command: build/test/soltest -t 'syntaxTest*' -- --no-ipc --testpath test
- run:
name: Coverage of type checker
2018-07-24 20:27:08 +00:00
command: codecov --flags syntax --gcov-root build
2018-05-02 13:42:34 +00:00
- run: *run_tests
2018-07-23 11:29:55 +00:00
- run:
name: Coverage of all
command: codecov --flags all --gcov-root build
- store_test_results:
path: test_results/
test_x86_mac:
macos:
xcode: "9.0"
environment:
TERM: xterm
steps:
- checkout
- attach_workspace:
at: build
- run:
name: Install dependencies
command: |
brew update
brew upgrade
brew unlink python
brew install z3
- run: mkdir -p test_results
2018-05-02 13:42:34 +00:00
- run: *run_tests
2018-02-08 23:36:05 +00:00
- store_test_results:
path: test_results/
2018-02-08 15:12:04 +00:00
2018-02-19 16:20:30 +00:00
docs:
docker:
- image: buildpack-deps:artful
steps:
- checkout
- run:
name: Install build dependencies
command: |
apt-get -qq update
apt-get -qy install python-sphinx python-pip
2018-05-02 13:42:34 +00:00
- run: *setup_prerelease_commit_hash
2018-02-19 16:20:30 +00:00
- run:
name: Build documentation
command: ./scripts/docs.sh
- store_artifacts:
path: docs/_build/html/
destination: docs-html
2018-02-08 15:12:04 +00:00
workflows:
version: 2
build_all:
jobs:
- test_check_spelling: *build_on_tags
- test_check_style: *build_on_tags
- test_buglist: *build_on_tags
2018-04-03 15:34:38 +00:00
- build_emscripten: *build_on_tags
2018-02-09 16:21:36 +00:00
- test_emscripten_solcjs:
2018-04-03 15:34:38 +00:00
<<: *build_on_tags
2018-02-09 16:21:36 +00:00
requires:
- build_emscripten
- test_emscripten_external:
2018-04-03 15:34:38 +00:00
<<: *build_on_tags
2018-02-08 22:43:05 +00:00
requires:
- build_emscripten
- build_x86_linux: *build_on_tags
- build_x86_mac: *build_on_tags
- test_x86_linux:
<<: *build_on_tags
requires:
- build_x86_linux
- test_x86_mac:
2018-04-03 15:34:38 +00:00
<<: *build_on_tags
requires:
- build_x86_mac
2018-04-03 15:34:38 +00:00
- docs: *build_on_tags