evmc/circle.yml

126 lines
3.4 KiB
YAML
Raw Normal View History

2018-03-28 13:20:39 +00:00
version: 2
jobs:
2018-08-28 09:06:53 +00:00
build: &build
2018-03-28 13:20:39 +00:00
docker:
- image: ethereum/cpp-build-env
steps:
- checkout
- run:
name: "Configure"
working_directory: ~/build
2018-06-08 10:31:22 +00:00
command: cmake ../project -DCMAKE_INSTALL_PREFIX=~/install -DBUILD_SHARED_LIBS=ON -DEVMC_EXAMPLES=ON -DEVMC_TESTING=ON
2018-03-28 13:20:39 +00:00
- run:
name: "Build"
command: cmake --build ~/build
2018-06-08 11:03:14 +00:00
- run:
name: "Unit tests"
working_directory: ~/build/test
command: ./evmc-test
2018-04-11 10:55:01 +00:00
- run:
name: "Test"
command: cmake --build ~/build --target test
2018-04-11 13:19:41 +00:00
- run:
name: "Install"
command: cmake --build ~/build --target install
2018-04-18 14:32:24 +00:00
- run:
name: "Package"
command: |
cmake --build ~/build --target package
mkdir ~/package
mv ~/build/evmc-*.tar.gz ~/package
- store_artifacts:
path: ~/package
destination: package
2018-06-19 09:41:51 +00:00
- run:
name: "Test CMake package config"
command: |
mkdir ~/build-example-evmc && cd ~/build-example-evmc
cmake ~/project/examples/use_evmc_in_cmake -DCMAKE_PREFIX_PATH=~/install
cmake --build .
mkdir ~/build-example-instructions && cd ~/build-example-instructions
cmake ~/project/examples/use_instructions_in_cmake -DCMAKE_PREFIX_PATH=~/install
cmake --build .
2018-04-11 13:19:41 +00:00
- run:
name: "Run evmc-vmtester libevmc-examplevm.so"
command: ~/install/bin/evmc-vmtester ~/install/lib/libevmc-examplevm.so
2018-03-28 13:20:39 +00:00
2018-08-28 09:06:53 +00:00
build-clang-3.8:
<<: *build
environment:
CC: clang-3.8
CXX: clang++-3.8
2018-03-28 15:01:47 +00:00
test-docs:
2018-03-28 14:16:28 +00:00
docker:
- image: ethereum/cpp-build-env
steps:
- checkout
- run:
2018-03-28 15:01:47 +00:00
name: "Test documentation"
2018-03-28 14:16:28 +00:00
command: |
2018-08-13 19:01:54 +00:00
cat Doxyfile | sed 's/HTML_OUTPUT = ./HTML_OUTPUT = ..\/docs/' | doxygen - > doxygen.log 2> doxygen.warnings
2018-03-28 14:16:28 +00:00
if [ -s doxygen.warnings ]; then
printf '\n\nDoxygen warnings:\n\n'
cat doxygen.warnings
exit 1
fi
cat doxygen.log
2018-08-13 19:01:54 +00:00
- store_artifacts:
path: ~/docs
destination: docs
2018-03-28 14:16:28 +00:00
2018-03-28 15:01:47 +00:00
upload-docs:
docker:
- image: ethereum/cpp-build-env
steps:
- checkout
- run:
name: "Generate documentation"
2018-03-28 20:17:41 +00:00
command: doxygen Doxyfile
2018-03-28 15:01:47 +00:00
- run:
name: "Upload documentation"
command: |
git config user.email "docs-bot@ethereum.org"
git config user.name "Documentation Bot"
2018-03-28 20:17:41 +00:00
git add --all
2018-03-28 15:01:47 +00:00
git commit -m "Update docs"
git push -f "https://$GITHUB_TOKEN@github.com/ethereum/evmc.git" HEAD:gh-pages
2018-08-20 10:15:09 +00:00
bindings-go-1.10:
docker:
- image: circleci/golang:1.10
steps: &bindings-go-steps
- checkout
- run:
name: "Go Build"
command: |
go get -v github.com/ethereum/go-ethereum/common
go build -v ./bindings/go/evmc
go vet -v ./bindings/go/evmc
bindings-go-1.9:
docker:
- image: circleci/golang:1.9
steps: *bindings-go-steps
2018-03-28 13:20:39 +00:00
workflows:
version: 2
evmc:
jobs:
- build
2018-08-28 09:06:53 +00:00
- build-clang-3.8
2018-08-20 10:15:09 +00:00
- bindings-go-1.10
- bindings-go-1.9
2018-03-28 15:01:47 +00:00
- test-docs
- upload-docs:
requires:
- test-docs
filters:
branches:
only:
- master
- docs