summaryrefslogtreecommitdiffstats
path: root/.builds/debian.yml
blob: 9aba55cda313b100c102ba889001fc83b8635598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image: debian/stable
sources:
  - https://git.sr.ht/~matthiasbeyer/kairos
packages:
  - curl
  - openssl
tasks:
  - install: curl https://sh.rustup.rs -sSf | sh -s -- -y
  - build: |
      cd kairos
      PATH="$HOME/.cargo/bin:$PATH" cargo build --all
  - test: |
      cd kairos
      PATH="$HOME/.cargo/bin:$PATH" cargo test --all