Skip to content
Snippets Groups Projects

CI

Merged Stephen D requested to merge ci into master
Files
2
.gitlab-ci.yml 0 → 100644
+ 29
0
image: "rust:latest"
stages:
- test
- build
before_script:
- apt-get update -q && apt-get install mingw-w64 -yqq
- rustup component add rustfmt
- rustup component add clippy
- rustup target add x86_64-pc-windows-gnu
test:
stage: test
script:
- cargo fmt -- --check
- cargo clippy --all-targets --all-features -- -D warnings
- cargo test
build:
stage: build
script:
- cargo build --release
- cargo build --release --target x86_64-pc-windows-gnu
artifacts:
paths:
- target/release/dotacat
- target/x86_64-pc-windows-gnu/release/dotacat.exe
Loading