This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/.gitlab-ci.yml
2019-03-08 14:01:39 +13:00

39 lines
643 B
YAML

cargo-test:
image: rust:latest
variables:
CARGO_HOME: "$CI_PROJECT_DIR/cache/"
cache:
paths:
- "cache"
before_script:
- rustc -V
script:
- cargo test
cargo-lint:
image: rust:latest
variables:
CARGO_HOME: "$CI_PROJECT_DIR/cache/"
cache:
paths:
- "cache"
before_script:
- rustc -V
- rustup component add clippy
script:
- cargo clippy
pages:
image: node:lts-stretch
cache:
paths:
- site/node_modules/
before_script:
- (cd site && yarn install)
script:
- (cd site && yarn run hexo generate)
artifacts:
paths:
- public
only:
- master