summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-06-01 11:43:25 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-06-01 11:43:25 +0200
commit63d03bc7662815ffcd2695b28b28a7f6978ad0d3 (patch)
tree4de4b940157a75dc9c59857eed67efe47f64e031
parentccf323bb0812638ca551f88e0adc71e166ea979f (diff)
Remove sourcehut builds
Since today, sourcehut builds should only work if payment is enabled. Right now it still seems to work. I am not sure whether this is a bug or intended. Either way, to be nice, remove the build setup for now until we figured out what is happening and how to continue. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-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
-