Skip to content
Snippets Groups Projects
Forked from CATS / mobile-transceiver-software
18 commits behind the upstream repository.
.gitlab-ci.yml 473 B
image: "rust:latest"

stages:
  - lint
  - build

before_script:
  - rustup target add thumbv7em-none-eabihf
  - rustup component add rustfmt
  - rustup component add clippy
  - cargo install flip-link

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