Files
rua-list/.gitlab-ci.yml
DefectingCat 4638df0bab Add gitlab ci
2023-05-06 14:04:45 +08:00

44 lines
713 B
YAML

stages:
- test
- build
- publish
tests:
stage: test
image: rust
script:
- cargo test
build:amd64:
stage: build
image: rust
script:
- cargo build --release
artifacts:
paths:
- target/release/rua-list
rustdoc:
stage: build
image: rust
script:
- cargo doc
artifacts:
paths:
- target/doc
pages:
stage: publish
image: alpine
dependencies:
- build:amd64
- rustdoc
script:
- mkdir -p public
- mv target/doc public/doc
- mv target/release/rua-list public/rua-list
artifacts:
paths:
- public
only:
- master