32 lines
779 B
YAML
32 lines
779 B
YAML
matrix:
|
|
PLATFORM:
|
|
- 'linux/amd64'
|
|
- 'linux/arm64'
|
|
|
|
labels:
|
|
platform: ${PLATFORM}
|
|
|
|
when:
|
|
event: tag
|
|
|
|
steps:
|
|
build:
|
|
image: 'rust:1.71-alpine3.18'
|
|
commands:
|
|
- apk add --no-cache build-base
|
|
- cargo build --release --verbose
|
|
# Ensure the release binary is also statically compiled
|
|
- '[ "$(readelf -d target/release/alex | grep NEEDED | wc -l)" = 0 ]'
|
|
- du -h target/release/alex
|
|
|
|
publish:
|
|
image: 'curlimages/curl'
|
|
secrets:
|
|
- gitea_password
|
|
commands:
|
|
- >
|
|
curl -s --fail
|
|
--user "Chewing_Bever:$GITEA_PASSWORD"
|
|
--upload-file target/release/alex
|
|
https://git.rustybever.be/api/packages/Chewing_Bever/generic/alex/"${CI_COMMIT_TAG}"/alex-"$(echo '${PLATFORM}' | sed 's:/:-:g')"
|