netapp/.drone.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

2021-02-17 17:45:02 +01:00
kind: pipeline
name: default
workspace:
base: /drone
clone:
disable: true
2021-02-17 17:45:02 +01: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 12:17:01 +01:00
image: rust:1.58-buster
2021-02-17 17:45:02 +01:00
environment:
CARGO_HOME: /drone/cargo
commands:
2022-02-21 12:20:19 +01: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 17:45:02 +01:00
- name: build
2022-02-21 12:17:01 +01:00
image: rust:1.58-buster
environment:
CARGO_HOME: /drone/cargo
2021-02-17 17:45:02 +01:00
commands:
- apt-get update
- apt-get install --yes libsodium-dev
2021-03-15 13:03:23 +01:00
- cargo install -f cargo-all-features
- cd netapp
- cargo build-all-features
2021-02-18 12:07:04 +01:00
- cargo build --example fullmesh
- cargo build --example basalt --features "basalt"
- name: test
2022-02-21 12:17:01 +01: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 18:05:49 +02:00
- cargo test --all-features -- --test-threads 1