netapp/.drone.yml

77 lines
1.9 KiB
YAML
Raw 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
2021-02-17 16:45:02 +00:00
- name: restore-cache
image: meltwater/drone-cache:dev
environment:
AWS_ACCESS_KEY_ID:
from_secret: cache_aws_access_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: cache_aws_secret_access_key
pull: true
settings:
restore: true
archive_format: "gzip"
bucket: drone-cache
cache_key: '{{ .Repo.Name }}_{{ checksum "netapp/Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
2021-02-17 16:45:02 +00:00
region: garage
mount:
- 'netapp/target'
- 'cargo/registry/index'
- 'cargo/registry/cache'
- 'cargo/bin'
- 'cargo/git/db'
2021-02-17 16:45:02 +00:00
path_style: true
endpoint: https://garage.deuxfleurs.fr
- name: build
2021-02-17 17:23:44 +00:00
image: rustlang/rust:nightly
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"
2021-02-17 16:45:02 +00:00
- name: rebuild-cache
image: meltwater/drone-cache:dev
environment:
AWS_ACCESS_KEY_ID:
from_secret: cache_aws_access_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: cache_aws_secret_access_key
pull: true
settings:
rebuild: true
archive_format: "gzip"
bucket: drone-cache
cache_key: '{{ .Repo.Name }}_{{ checksum "netapp/Cargo.lock" }}_{{ arch }}_{{ os }}_gzip'
2021-02-17 16:45:02 +00:00
region: garage
mount:
- 'netapp/target'
- 'cargo/registry/index'
- 'cargo/registry/cache'
- 'cargo/bin'
- 'cargo/git/db'
2021-02-17 16:45:02 +00:00
path_style: true
endpoint: https://garage.deuxfleurs.fr