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:44:41 +0200
commite733ead7f7849030bc87e1b9da4d8b9046b71904 (patch)
treeae5dc6ba9e8c67c3f5cc16562366672ef79c5dd5
parent8e0ba26b15ffb78fa05f1e631bfd12722ddcd31e (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> (cherry picked from commit 63d03bc7662815ffcd2695b28b28a7f6978ad0d3)
-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
-