summaryrefslogtreecommitdiff
path: root/.builds/freebsd.yml
blob: 10f0333ad158ff3ebfe172198a7d706316847647 (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
image: freebsd/latest
packages:
  - devel/cmake
  - devel/pkgconf
  - lang/python3
  - print/freetype2
  - x11-fonts/fontconfig
  - x11-fonts/dejavu
  - x11/libxcb
sources:
  - https://github.com/alacritty/alacritty
tasks:
  - rustup: |
      curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal
      $HOME/.cargo/bin/rustup toolchain install --profile minimal 1.43.1
  - 1-43-1: |
      cd alacritty
      $HOME/.cargo/bin/cargo +1.43.1 test
  - 1-43-1-wayland: |
      cd alacritty/alacritty
      $HOME/.cargo/bin/cargo +1.43.1 test --no-default-features --features=wayland
  - 1-43-1-x11: |
      cd alacritty/alacritty
      $HOME/.cargo/bin/cargo +1.43.1 test --no-default-features --features=x11
  - stable: |
      cd alacritty
      $HOME/.cargo/bin/cargo +stable test