netapp/.drone.yml

55 lines
1.3 KiB
YAML
Raw Normal View History

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