Initial commit.

This commit is contained in:
2018-01-09 11:33:39 +01:00
commit 92fa9401cf
5 changed files with 291 additions and 0 deletions

14
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,14 @@
image: "rust:latest"
variables:
CARGO_HOME: $CI_PROJECT_DIR/cargo
test:cargo:
script:
- rustc --version && cargo --version
- time cargo test --verbose --jobs 1 --release
cache:
paths:
- target/
- cargo/