dr/.woodpecker.yml

30 lines
1,023 B
YAML
Raw Permalink Normal View History

2022-11-20 23:00:58 +01:00
pipeline:
build:
image: rust:1-buster
when:
event: tag
commands:
- cargo build --release
buildlinuxaarch64:
image: rust:1-buster
when:
event: tag
commands:
2022-11-29 18:58:12 +01:00
- apt-get update && apt-get install -y gcc-aarch64-linux-gnu
- rustup target add aarch64-unknown-linux-gnu
2022-11-29 19:14:24 +01:00
- cargo build --release --target aarch64-unknown-linux-gnu
2022-11-21 00:05:52 +01:00
release:
2022-11-20 23:00:58 +01:00
image: rust:1-buster
2022-11-21 00:05:52 +01:00
when:
event: tag
secrets: [ gitea_api_key ]
2022-11-20 23:00:58 +01:00
commands:
2022-11-21 00:26:22 +01:00
- curl --user guillem:$GITEA_API_KEY --upload-file target/release/dr https://git.guillemborrell.es/api/packages/guillem/generic/dr/$CI_COMMIT_TAG/dr-linux-amd64
- curl --user guillem:$GITEA_API_KEY --upload-file target/aarch64-unknown-linux-gnu/release/dr https://git.guillemborrell.es/api/packages/guillem/generic/dr/$CI_COMMIT_TAG/dr-linux-aarch64
publish:
image: rust:1-buster
when:
event: tag
secrets: [ cargo_registry_token ]
commands:
2022-11-21 00:26:22 +01:00
- cargo publish --token $CARGO_REGISTRY_TOKEN