~matthiasbeyer/serde-select

a7d9e4bf5d418392c29b8f26f07ff11a6acbf544 — Matthias Beyer 4 years ago 30f9101
Add srht build on debian

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
1 files changed, 24 insertions(+), 0 deletions(-)

A .builds/debian.yml
A .builds/debian.yml => .builds/debian.yml +24 -0
@@ 0,0 1,24 @@
image: debian/stable
sources:
  - https://git.sr.ht/~matthiasbeyer/serde-select
packages:
  - curl
  - libclang-dev
tasks:
  - install: curl https://sh.rustup.rs -sSf | sh -s -- -y
  - build: |
      cd serde-select
      PATH="$HOME/.cargo/bin:$PATH" cargo build --all --all-features
  - test: |
      cd serde-select
      PATH="$HOME/.cargo/bin:$PATH" cargo test --all --all-features
  - clippy-install: |
      PATH="$HOME/.cargo/bin:$PATH" rustup component add clippy
  - clippy: |
      cd serde-select
      PATH="$HOME/.cargo/bin:$PATH" cargo clippy --all --all-targets --all-features -- -D warnings
triggers:
  - action: email
    condition: always
    to: mail@beyermatthias.de