2021-11-26 09:54:38 -05:00
|
|
|
variables:
|
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
|
2021-11-24 16:49:13 -05:00
|
|
|
stages:
|
|
|
|
- clippy
|
|
|
|
- test
|
|
|
|
|
|
|
|
############# Clippy Lint
|
|
|
|
clippy:
|
|
|
|
stage: clippy
|
|
|
|
image: rust:latest
|
|
|
|
tags:
|
|
|
|
- linux
|
|
|
|
- amd64
|
|
|
|
before_script:
|
|
|
|
- rustup component add clippy
|
|
|
|
script:
|
|
|
|
# - RUSTFLAGS="-D warnings" RUST_BACKTRACE=1 cargo clippy
|
|
|
|
- RUST_BACKTRACE=1 cargo clippy
|
|
|
|
|
|
|
|
############# Unit Testing
|
|
|
|
test_linux_amd64:
|
|
|
|
stage: test
|
|
|
|
image: rust:latest
|
|
|
|
tags:
|
|
|
|
- linux
|
|
|
|
- amd64
|
|
|
|
script:
|
|
|
|
# - RUSTFLAGS="-D warnings" RUST_BACKTRACE=1 cargo test -- --nocapture
|
|
|
|
- RUST_BACKTRACE=1 cargo test -- --nocapture
|