Skip to content

Commit

Permalink
Add gitlab ci config (#860)
Browse files Browse the repository at this point in the history
  • Loading branch information
sesam authored and ignopeverell committed Mar 25, 2018
1 parent a8fc82d commit 731cde3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Official rust image https://hub.docker.com/r/library/rust/tags/
image: "rust:latest"

before_script:
- apt-get update --yes -qq # yqq = yes, very quitely
- apt-get install -yqq --no-install-recommends cmake llvm-dev libclang-dev clang

test:cargo:
script:
- rustc --version && cargo --version
- cargo test --all --verbose # matrix-style is a possibility too

0 comments on commit 731cde3

Please sign in to comment.