# Copyright (C) 2019 Robin Krahl # SPDX-License-Identifier: CC0-1.0 image: archlinux packages: - rustup sources: - https://git.ireas.org/ntw tasks: - setup: | rustup set profile minimal rustup default stable rustup target add thumbv7m-none-eabi rustup component add clippy rustfmt - version: | rustc -V - build: | cd ntw cargo build --release size target/thumbv7m-none-eabi/release/ntw - format: | cd ntw cargo fmt -- --check - clippy: | cd ntw cargo clippy -- -D warnings