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.
rewot/.gitlab-ci.yml

22 lines
390 B

image: rascul3/rust:latest
release-build:
stage: build
script:
- cargo build --release
- mkdir public
- mv target/release/rewot public/rewot-bin
artifacts:
paths:
- public/
doc:
stage: doc
script:
- cargo doc
- mkdir public
- mv target/doc public/
artifacts:
paths:
- public/