summaryrefslogtreecommitdiffstats
path: root/.builds/debian.yml
blob: f07211705b28dc7a5a6d43a67ab2e7108e66a22f (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
25
image: debian/stable
sources:
  - https://git.sr.ht/~matthiasbeyer/imag
packages:
  - curl
  - libclang-dev
  - libdbus-1-dev
  - libssl-dev
  - openssl
  - pkg-config
  - git
tasks:
  - install: curl https://sh.rustup.rs -sSf | sh -s -- -y
  - check: |
      cd imag
      PATH="$HOME/.cargo/bin:$PATH" cargo check --all --all-features --tests
  - build: |
      cd imag
      PATH="$HOME/.cargo/bin:$PATH" cargo build --all --all-features
  - prepare-test: |
      git config --global user.name "Test user"
      git config --global user.email "test@user.tld"
  - test: |
      cd imag
      PATH="$HOME/.cargo/bin:$PATH" cargo test --all --all-features