solidity/circle.yml

182 lines
5.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: /.*/
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
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
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
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
2018-02-08 15:12:04 +00:00
build_x86:
docker:
- image: buildpack-deps:artful
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
2018-02-08 15:12:04 +00:00
- run:
name: Store commit hash and prerelease
command: |
2018-02-19 16:20:30 +00:00
if [ "$CIRCLE_BRANCH" = release -o -n "$CIRCLE_TAG" ]; then echo -n > prerelease.txt; else date -u +"nightly.%Y.%-m.%-d" > prerelease.txt; fi
2018-02-08 15:12:04 +00:00
echo -n "$CIRCLE_SHA1" > commit_hash.txt
- run:
name: Build
2018-03-05 21:56:35 +00:00
command: |
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
make -j4
- store_artifacts:
path: build/solc/solc
destination: solc
- persist_to_workspace:
root: build
paths:
- solc/solc
- test/soltest
- test/tools/solfuzzer
test_x86:
docker:
- image: buildpack-deps:artful
steps:
- checkout
- attach_workspace:
at: build
- run:
name: Install dependencies
command: |
apt-get -qq update
apt-get -qy install libz3-dev libleveldb1v5
2018-02-08 23:36:05 +00:00
- run: mkdir -p test_results
2018-02-08 15:12:04 +00:00
- run:
2018-02-13 10:54:22 +00:00
name: Tests
command: scripts/tests.sh --junit_report test_results
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
- run:
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:
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:
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
2018-04-03 15:34:38 +00:00
- build_x86: *build_on_tags
- test_x86:
2018-04-03 15:34:38 +00:00
<<: *build_on_tags
requires:
- build_x86
2018-04-03 15:34:38 +00:00
- docs: *build_on_tags