From 6a67b236d202d243d4c8f74cf65d64955cb7c9ab Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 24 Apr 2020 11:14:50 +0200 Subject: Add srht build on debian Signed-off-by: Matthias Beyer --- .builds/debian.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .builds/debian.yml diff --git a/.builds/debian.yml b/.builds/debian.yml new file mode 100644 index 0000000..1510240 --- /dev/null +++ b/.builds/debian.yml @@ -0,0 +1,18 @@ +image: debian/stable +sources: + - https://git.sr.ht/~matthiasbeyer/filters +packages: + - curl + - openssl +tasks: + - install: curl https://sh.rustup.rs -sSf | sh -s -- -y + - build: | + cd filters + PATH="$HOME/.cargo/bin:$PATH" cargo build --all + - test: | + cd filters + PATH="$HOME/.cargo/bin:$PATH" cargo test --all + - clippy: | + cd filters + PATH="$HOME/.cargo/bin:$PATH" rustup component add clippy + PATH="$HOME/.cargo/bin:$PATH" cargo clippy --all --all-targets -- -D warnings -- cgit v1.2.3