jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.1KB

  1. task:
  2. freebsd_instance:
  3. matrix:
  4. - image_family: freebsd-13-2
  5. - image_family: freebsd-14-0
  6. environment:
  7. CFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
  8. CPPFLAGS: -O2 -pipe -fPIC -fstack-protector-strong -fno-strict-aliasing -I/usr/local/include
  9. LDFLAGS: -L/usr/local/lib -fstack-protector-strong
  10. prepare_script:
  11. - mkdir /Install
  12. matrix:
  13. - name: FreeBSD Minimal Build
  14. dependencies_script:
  15. - pkg install -y pkgconf python3 libsamplerate libsysinfo expat
  16. config_script:
  17. - python3 ./waf configure --celt=no --samplerate=yes --alsa=no --classic --opus=no --prefix /Install --pkgconfigdir libdata/pkgconfig
  18. - name: FreeBSD All Options
  19. dependencies_script:
  20. - pkg install -y pkgconf python3 libsamplerate libsysinfo alsa-lib dbus expat opus
  21. config_script:
  22. - python3 ./waf configure --celt=no --samplerate=yes --alsa=yes --dbus --classic --autostart=dbus --opus=yes --prefix /Install --pkgconfigdir libdata/pkgconfig
  23. build_script:
  24. - python3 ./waf
  25. install_script:
  26. - python3 ./waf install