aboutsummaryrefslogtreecommitdiff
path: root/libc/.cirrus.yml
blob: 47807ab0a7c6178dd6771223271125d018fa06b5 (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
26
27
task:
  name: stable x86_64-unknown-freebsd-11
  freebsd_instance:
    image: freebsd-11-2-release-amd64
  setup_script:
    - pkg install -y curl
    - curl https://sh.rustup.rs -sSf --output rustup.sh
    - sh rustup.sh -y
    - . $HOME/.cargo/env
    - rustup default stable
  test_script:
    - . $HOME/.cargo/env
    - sh ci/run.sh x86_64-unknown-freebsd
    
task:
  name: nightly x86_64-unknown-freebsd-12
  freebsd_instance:
    image: freebsd-12-0-release-amd64
  setup_script:
    - pkg install -y curl
    - curl https://sh.rustup.rs -sSf --output rustup.sh
    - sh rustup.sh --default-toolchain nightly -y
    - . $HOME/.cargo/env
    - rustup default nightly
  test_script:
    - . $HOME/.cargo/env
    - sh ci/run.sh x86_64-unknown-freebsd