summaryrefslogtreecommitdiffstats
path: root/.builds/debian.yml
blob: e2b9d166cf6ca3a89cc2f65a596fd0f224fae3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
triggers:
  - action: email
    condition: always
    to: mail@beyermatthias.de