netapp/.drone.yml

55 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2023-01-31 23:09:13 +00:00
---
2021-02-17 16:45:02 +00:00
kind: pipeline
name: default
steps:
- 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
2023-01-31 23:09:13 +00:00
volumes:
- name: cargo
path: /drone/cargo
commands:
2022-02-21 11:20:19 +00:00
- rustup component add rustfmt clippy
- 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
2023-01-31 23:09:13 +00:00
volumes:
- name: cargo
path: /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
- 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
2023-01-31 23:09:13 +00:00
volumes:
- name: cargo
path: /drone/cargo
commands:
- apt-get update
- apt-get install --yes libsodium-dev
2021-10-13 16:05:49 +00:00
- cargo test --all-features -- --test-threads 1
2023-01-31 23:09:13 +00:00
volumes:
- name: cargo
temp: {}
---
kind: signature
hmac: f0d1a9e8d85a22c1d9084b4d90c9930be9700da52284f1875ece996cc52a6ce9
...