summaryrefslogtreecommitdiffstats
path: root/.builds/debian-legacyrust.yml
blob: 4354d701e679969690dbda8524d567dd8caeb4b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
image: debian/stable
sources:
  - https://git.sr.ht/~matthiasbeyer/kairos
packages:
  - curl
  - openssl
tasks:
  - install: |
      export RUSTUP_TOOLCHAIN="1.32.0"
      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