summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-08-09 15:09:39 +0000
committerGitHub <noreply@github.com>2022-08-09 15:09:39 +0000
commitc34d78459505ef20c22318b6e2ef720bbb80a976 (patch)
tree0cd48e83a697aefa91636a639174ed6ec65dd081
parent676e120486d5e094bf7bb40bcd9ebac081f91693 (diff)
parente4cb7e179a5bb6755457334702b08d5e5f26a994 (diff)
Merge #7
7: Remove srht build config r=matthiasbeyer a=matthiasbeyer Co-authored-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