Version bump. Support more architectures
This commit is contained in:
parent
1a2bb27141
commit
a2897f5c6e
|
@ -1,10 +1,30 @@
|
|||
pipeline:
|
||||
build:
|
||||
image: rust:1-buster
|
||||
when:
|
||||
event: tag
|
||||
commands:
|
||||
- cargo build --release
|
||||
buildlinuxaarch64:
|
||||
image: rust:1-buster
|
||||
when:
|
||||
event: tag
|
||||
commands:
|
||||
- apt-get update && apt-get install gcc-aarch64-linux-gnu
|
||||
- rustup target add aarch64-unknown-linux-gnu
|
||||
- cargo build --release --target gcc-aarch64-linux-gnu
|
||||
release:
|
||||
image: rust:1-buster
|
||||
when:
|
||||
event: tag
|
||||
secrets: [ gitea_api_key , cargo_registry_token ]
|
||||
secrets: [ gitea_api_key ]
|
||||
commands:
|
||||
- cargo build --release
|
||||
- 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:
|
||||
- cargo publish --token $CARGO_REGISTRY_TOKEN
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "dr"
|
||||
description = "Command-line data file processing in Rust"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
edition = "2021"
|
||||
include = [
|
||||
"**/*.rs",
|
||||
|
|
Loading…
Reference in a new issue