chgk_ledb/.drone.yml

40 lines
846 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: rust:1-alpine
commands:
- apk add --no-cache musl-dev
- cargo build --verbose --all-features --all
- cargo test --verbose --all-features --all
environment:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
trigger:
event:
- push
---
kind: pipeline
type: docker
name: publish
steps:
- name: push
image: rust:1-alpine
commands:
- apk add --no-cache musl-dev
- cargo build -p chgk_ledb_lib --all-features
- cargo publish --registry gitea -p chgk_ledb_lib --all-features
environment:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
CARGO_REGISTRIES_GITEA_INDEX: https://gitea.b4tman.ru/b4tman/_cargo-index.git
CARGO_REGISTRIES_GITEA_TOKEN:
from_secret: cargo_gitea_token
trigger:
event:
- tag