diff options
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 20 |
1 files changed, 20 insertions, 0 deletions
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 |