From e14d1b04855c34c614c9921b0c6ade35c4325139 Mon Sep 17 00:00:00 2001 From: Ren Kararou Date: Wed, 29 Nov 2023 09:07:59 -0600 Subject: [PATCH] add ci --- .build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .build.yml diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..5ba9a1d --- /dev/null +++ b/.build.yml @@ -0,0 +1,20 @@ +image: freebsd/latest +sources: + - https://git.sr.ht/~spicywolf/k2spice +tasks: + - rustup: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain none -y + source "$HOME/.cargo/env" + rustup toolchain install nightly --allow-downgrade --profile minimal --component clippy + - build: | + cd k2spice + source "$HOME/.cargo/env" + cargo build + - test: | + cd k2spice + source "$HOME/.cargo/env" + cargo test + - clippy: | + cd k2spice + source "$HOME/.cargo/env" + cargo clippy