# 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 1.37.0 rustup target add thumbv7m-none-eabi rustup component add rustfmt rustup component add clippy - 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