conductor/.drone.yml

27 lines
581 B
YAML
Raw Normal View History

2022-06-23 04:41:01 +00:00
kind: pipeline
name: default
steps:
- name: test
2022-09-25 06:57:10 +00:00
image: rust:latest
2022-06-23 04:41:01 +00:00
commands:
2022-09-25 07:05:39 +00:00
- rustup component add clippy
2022-09-25 07:03:16 +00:00
- cargo clippy
- cargo test --all
2022-09-25 06:57:10 +00:00
2022-09-25 06:58:04 +00:00
- name: deploy
2022-09-25 06:57:10 +00:00
image: rust:latest
commands:
- cargo build --release
2022-09-25 07:03:16 +00:00
- tar cvzf conductor.tar.gz target/release/conductor
- wget https://dl.min.io/client/mc/release/linux-amd64/mc
- chmod +x mc
2022-09-25 06:57:10 +00:00
- ./mc alias set fivesigma https://objects.5sigma.io $MINIOID $MINIOSECRET
2022-09-25 07:03:16 +00:00
- ./mc cp conductor.tar.gz fivesigma/public/conductor.tar.gz
2022-09-25 07:09:40 +00:00
when:
event:
- promote
target:
- staging
- production