From ca8ee41aed9df2c58f4aa47a679cda4bb9e626ff Mon Sep 17 00:00:00 2001 From: Stephen D <webmaster@scd31.com> Date: Tue, 5 Dec 2023 22:08:30 -0400 Subject: [PATCH] add ci --- .gitlab-ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f54b9f9 --- /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 -- GitLab