summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-08-09 17:07:09 +0200
committerMatthias Beyer <mail@beyermatthias.de>2022-08-09 17:07:09 +0200
commite4cb7e179a5bb6755457334702b08d5e5f26a994 (patch)
tree2d97a8b6aca8b7efc96b6e8738ffa3cfaec96a1e
parent9ef54ab9490895e2373eee891038c24bf5d99081 (diff)
Remove srht build config
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.builds/debian.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml
deleted file mode 100644
index 1510240..0000000
--- a/.builds/debian.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-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