2021-02-17 16:45:02 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
2021-03-10 21:32:14 +00:00
|
|
|
workspace:
|
|
|
|
base: /drone
|
|
|
|
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2021-02-17 16:45:02 +00:00
|
|
|
steps:
|
2021-03-10 21:32:14 +00:00
|
|
|
- name: clone
|
|
|
|
image: alpine/git
|
|
|
|
commands:
|
|
|
|
- mkdir -p cargo
|
|
|
|
- git clone $DRONE_GIT_HTTP_URL
|
|
|
|
- cd netapp
|
|
|
|
- git checkout $DRONE_COMMIT
|
|
|
|
|
2021-10-12 11:32:39 +00:00
|
|
|
- name: style
|
|
|
|
image: rustlang/rust:nightly
|
2021-02-17 16:45:02 +00:00
|
|
|
environment:
|
2021-10-12 11:32:39 +00:00
|
|
|
CARGO_HOME: /drone/cargo
|
|
|
|
commands:
|
|
|
|
- cd netapp
|
|
|
|
- cargo fmt -- --check
|
|
|
|
- cargo clippy --all-features -- --deny warnings
|
|
|
|
- cargo clippy --example fullmesh -- --deny warnings
|
|
|
|
- cargo clippy --example basalt --all-features -- --deny warnings
|
2021-02-17 16:45:02 +00:00
|
|
|
|
|
|
|
- name: build
|
2021-02-17 17:23:44 +00:00
|
|
|
image: rustlang/rust:nightly
|
2021-03-10 21:32:14 +00:00
|
|
|
environment:
|
|
|
|
CARGO_HOME: /drone/cargo
|
2021-02-17 16:45:02 +00:00
|
|
|
commands:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --yes libsodium-dev
|
2021-03-15 12:03:23 +00:00
|
|
|
- cargo install -f cargo-all-features
|
2021-03-10 21:32:14 +00:00
|
|
|
- cd netapp
|
|
|
|
- cargo build-all-features
|
2021-02-18 11:07:04 +00:00
|
|
|
- cargo build --example fullmesh
|
2021-03-10 21:32:14 +00:00
|
|
|
- cargo build --example basalt --features "basalt"
|
2021-10-13 16:06:16 +00:00
|
|
|
|
|
|
|
- name: test
|
|
|
|
image: rustlang/rust:nightly
|
|
|
|
environment:
|
|
|
|
CARGO_HOME: /drone/cargo
|
|
|
|
commands:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install --yes libsodium-dev
|
|
|
|
- cd netapp
|
2021-10-13 16:05:49 +00:00
|
|
|
- cargo test --all-features -- --test-threads 1
|