You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1016 B
50 lines
1016 B
stages:
|
|
- test
|
|
- build
|
|
- deploy
|
|
|
|
tests:
|
|
image: rust:1.28.0-jessie
|
|
stage: test
|
|
script:
|
|
- cargo test
|
|
tags:
|
|
- docker
|
|
|
|
debug:
|
|
image: rust:1.28.0-jessie
|
|
stage: build
|
|
script:
|
|
- cargo build
|
|
artifacts:
|
|
expire_in: 7 days
|
|
paths:
|
|
- target/debug/rsddns
|
|
tags:
|
|
- docker
|
|
|
|
release:
|
|
image: rust:1.28.0-jessie
|
|
stage: build
|
|
script:
|
|
- cargo build --release
|
|
- strip target/release/rsddns
|
|
artifacts:
|
|
expire_in: 7 days
|
|
paths:
|
|
- target/release/rsddns
|
|
tags:
|
|
- docker
|
|
only:
|
|
- master
|
|
|
|
deploy:release:
|
|
stage: deploy
|
|
script:
|
|
- cat Cargo.toml | grep "version =" | awk '{split($0,a,"="); gsub(/ |"/, "", a[2]); print a[2]}' > VERSION
|
|
- curl -v -u "$DEPLOYMENT_CREDENTIALS" --upload-file "target/release/rsddns" "$NEXUS_RELEASE_URL/com/sothr/rsddns/$(head -1 ./VERSION)/rsddns"
|
|
- curl -v -u "$DEPLOYMENT_CREDENTIALS" --upload-file "VERSION" "$NEXUS_RELEASE_URL/com/sothr/rsddns/latest"
|
|
dependencies:
|
|
- release
|
|
tags:
|
|
- linux
|