blob: 0109ec46d1ba93119b7227b392e76bd56c6e1a42 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | # Build libfuse on FreeBSD, but don't run the tests.
# More work is required to make the tests work.
task:
  name: FreeBSD
  freebsd_instance:
    image: freebsd-12-1-release-amd64
  install_script: ASSUME_ALWAYS_YES=yes pkg bootstrap -f; pkg install -y meson ninja
  script:
    - mkdir build
    - cd build
    - meson setup ..
    - ninja
 |