mirror of
https://github.com/mimblewimble/grin.git
synced 2025-05-08 18:21:14 +03:00
Add gitlab ci config (#860)
Example test --all passing: https://gitlab.com/mimblewimble/grin-ci/-/jobs/58984836
This commit is contained in:
parent
a8fc82d8c1
commit
731cde3710
1 changed files with 11 additions and 0 deletions
11
.gitlab-ci.yml
Normal file
11
.gitlab-ci.yml
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue