netapp/.drone.yml

53 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2021-02-17 16:45:02 +00:00
kind: pipeline
name: default
workspace:
base: /drone
clone:
disable: true
2021-02-17 16:45:02 +00:00
steps:
- name: clone
image: alpine/git
commands:
- mkdir -p cargo
- git clone $DRONE_GIT_HTTP_URL
- cd netapp
- git checkout $DRONE_COMMIT
- name: style
2022-02-21 11:17:01 +00:00
image: rust:1.58-buster
2021-02-17 16:45:02 +00:00
environment:
CARGO_HOME: /drone/cargo
commands:
2022-02-21 11:20:19 +00:00
- rustup component add rustfmt clippy
- 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
2022-02-21 11:17:01 +00:00
image: rust:1.58-buster
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
- cd netapp
- cargo build-all-features
2021-02-18 11:07:04 +00:00
- cargo build --example fullmesh
- cargo build --example basalt --features "basalt"
- name: test
2022-02-21 11:17:01 +00:00
image: rust:1.58-buster
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