summaryrefslogtreecommitdiffstats
path: root/.builds/debian.yml
diff options
context:
space:
mode:
Diffstat (limited to '.builds/debian.yml')
-rw-r--r--.builds/debian.yml36
1 files changed, 0 insertions, 36 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml
deleted file mode 100644
index a5619a5..0000000
--- a/.builds/debian.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-image: debian/buster
-sources:
- - https://git.sr.ht/~matthiasbeyer/butido
-packages:
- - libssl-dev
- - openssl
- - pkg-config
- - libpq-dev
-tasks:
- - install: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.50.0
- - prepare_lint: |
- PATH="$HOME/.cargo/bin:$PATH" cargo install cargo-deny --locked
- - lint-licenses: |
- cd butido
- PATH="$HOME/.cargo/bin:$PATH" cargo deny check licenses
- - lint-bans: |
- cd butido
- PATH="$HOME/.cargo/bin:$PATH" cargo deny check bans
- - lint-sources: |
- cd butido
- PATH="$HOME/.cargo/bin:$PATH" cargo deny check sources
- - build: |
- cd butido
- PATH="$HOME/.cargo/bin:$PATH" cargo build --all --all-features
- - test: |
- cd butido
- PATH="$HOME/.cargo/bin:$PATH" cargo test --all --all-features
- - clippy: |
- cd butido
- PATH="$HOME/.cargo/bin:$PATH" rustup component add clippy
- PATH="$HOME/.cargo/bin:$PATH" cargo clippy --all --all-targets --all-features -- -D warnings
-triggers:
- - action: email
- condition: always
- to: mail@beyermatthias.de, matthias.beyer@atos.net
-