summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-03-13 10:48:06 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-03-13 10:48:06 +0100
commit2d779100d8d96307132c90940f42164167db7198 (patch)
tree9493df0fb7aeda4f9d131744e8ff938e00601cff
parent2921c539f502b872464a8fcf8a0a686d0326e74d (diff)
Add srht build configuration
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.builds/debian.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml
new file mode 100644
index 0000000..5fb602e
--- /dev/null
+++ b/.builds/debian.yml
@@ -0,0 +1,24 @@
+image: debian/buster
+sources:
+ - https://git.sr.ht/~matthiasbeyer/config-rs-maint
+tasks:
+ - install: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.50.0
+ - build: |
+ cd config-rs-maint
+ PATH="$HOME/.cargo/bin:$PATH" cargo build --all --all-features
+ - test: |
+ cd config-rs-maint
+ PATH="$HOME/.cargo/bin:$PATH" cargo test --all --all-features
+ - clippy: |
+ cd config-rs-maint
+ PATH="$HOME/.cargo/bin:$PATH" rustup component add clippy
+ PATH="$HOME/.cargo/bin:$PATH" cargo clippy --all --all-targets --all-features -- -D warnings
+ - fmt: |
+ cd config-rs-maint
+ PATH="$HOME/.cargo/bin:$PATH" rustup component add rustfmt
+ PATH="$HOME/.cargo/bin:$PATH" cargo fmt -- --check
+triggers:
+ - action: email
+ condition: always
+ to: mail@beyermatthias.de
+