A cloudflare backed DDNS service written in Rust
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.

34 lines
476 B

stages:
- test
- build
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:
paths:
- target/debug/rsddns
tags:
- docker
release:
image: rust:1.28.0-jessie
stage: build
script:
- cargo build --release
- strip target/release/rsddns
artifacts:
paths:
- target/release/rsddns
tags:
- docker