forked from GitHub/bdwgc-rust
13 lines
277 B
YAML
13 lines
277 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: rust
|
|
steps:
|
|
- run: apt -y update --fix-missing
|
|
- run: apt -y install cmake
|
|
- checkout
|
|
- run: git submodule update --init --recursive
|
|
- run: cargo build
|
|
- run: cd examples && ./test.sh
|