Initial commit.

This commit is contained in:
2017-12-19 09:45:31 +01:00
commit be38bf5bd7
5 changed files with 298 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/