evmc/circle.yml

22 lines
354 B
YAML
Raw Normal View History

2018-03-28 13:20:39 +00:00
version: 2
jobs:
build:
docker:
- image: ethereum/cpp-build-env
steps:
- checkout
- run:
name: "Configure"
working_directory: ~/build
command: cmake ../project
- run:
name: "Build"
command: cmake --build ~/build
workflows:
version: 2
evmc:
jobs:
- build