fractal/.gitlab-ci.yml

50 lines
1.2 KiB
YAML
Raw Normal View History

2017-11-12 11:32:08 +00:00
stages:
- test
- lint
before_script:
- apt-get update -yqq
- apt-get install -yqq --no-install-recommends build-essential
- apt-get install -yqq --no-install-recommends libgtk-3-dev
- apt-get install -yqq libgmp-dev
# - apt-get install -yqq --no-install-recommends meson
test:stable:
# Stable img
# https://hub.docker.com/_/rust/
image: "rust"
script:
- rustc --version && cargo --version
- cargo build --all
- cargo test --all --verbose
test:nightly:
# Nightly
# https://hub.docker.com/r/rustlang/rust/
image: "rustlang/rust:nightly"
script:
- rustc --version && cargo --version
- cargo build --all
- cargo test --all --verbose
# - cargo bench
# Configure and run rustfmt on nightly
# Exits and builds fails on bad format
lint:rustfmt:
image: "rustlang/rust:nightly"
script:
- rustc --version && cargo --version
2017-11-12 12:35:10 +00:00
- cargo install rustfmt-nightly
2017-11-12 11:32:08 +00:00
- cargo fmt --all -- --write-mode=diff
allow_failure: true
# Configure and run clippy on nightly
# Only fails on errors atm.
lint:clippy:
image: "rustlang/rust:nightly"
script:
- rustc --version && cargo --version
- cargo install clippy
- cargo clippy --all
allow_failure: true