diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..f54b9f9d08ccc0e1773beca110b854a0fb1dacc5 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,24 @@ +image: "rust:latest" + +stages: + - lint + - build + +before_script: + - rustup target add thumbv7em-none-eabihf + - rustup component add rustfmt + - rustup component add clippy + +lint: + stage: lint + script: + - cargo fmt -- --check + - cargo clippy --all-features -- -D warnings + +build: + stage: build + script: + - cargo build --release + artifacts: + paths: + - target/thumbv7em-none-eabihf/release/cats-mobile-transceiver-mainboard