• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1task:
2  name: nightly x86_64-unknown-freebsd-12
3  freebsd_instance:
4    image: freebsd-12-4-release-amd64
5  setup_script:
6    - pkg install -y curl
7    - curl https://sh.rustup.rs -sSf --output rustup.sh
8    - sh rustup.sh --default-toolchain nightly -y --profile=minimal
9    - . $HOME/.cargo/env
10  test_script:
11    - . $HOME/.cargo/env
12    - LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd
13    - sh ci/run.sh x86_64-unknown-freebsd
14
15task:
16  name: nightly x86_64-unknown-freebsd-13
17  freebsd_instance:
18    image: freebsd-13-1-release-amd64
19  setup_script:
20    - pkg install -y curl
21    - curl https://sh.rustup.rs -sSf --output rustup.sh
22    - sh rustup.sh -y --default-toolchain nightly --profile=minimal
23    - . $HOME/.cargo/env
24  test_script:
25    - . $HOME/.cargo/env
26    - LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd
27    - sh ci/run.sh x86_64-unknown-freebsd
28
29task:
30  name: nightly x86_64-unknown-freebsd-14
31  freebsd_instance:
32    image: freebsd-14-0-current-amd64-v20220902
33  setup_script:
34    - pkg install -y curl
35    - curl https://sh.rustup.rs -sSf --output rustup.sh
36    - sh rustup.sh -y --default-toolchain nightly --profile=minimal
37    - . $HOME/.cargo/env
38  test_script:
39    - . $HOME/.cargo/env
40    - LIBC_CI=1 sh ci/run.sh x86_64-unknown-freebsd
41    - sh ci/run.sh x86_64-unknown-freebsd
42