mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
731cde3710
Example test --all passing: https://gitlab.com/mimblewimble/grin-ci/-/jobs/58984836
11 lines
368 B
YAML
11 lines
368 B
YAML
# 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
|