Skip to content

Commit 6c7a3c6

Browse files
committed
Add Gitlab CI file
1 parent 9f7987c commit 6c7a3c6

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.gitlab-ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Official language image. Look for the different tagged releases at:
2+
# https://hub.docker.com/r/library/rust/tags/
3+
image: "rust:latest"
4+
5+
before_script:
6+
- apt-get update -yqq
7+
- apt-get install -yqq --no-install-recommends build-essential cmake
8+
9+
# Use cargo to test the project
10+
test:cargo:
11+
script:
12+
- rustc --version && cargo --version # Print version info for debugging
13+
- cargo test --workspace --verbose

0 commit comments

Comments
 (0)