Audio plugin host https://kx.studio/carla
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.

.travis.yml 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. language: cpp
  2. os: linux
  3. dist: focal
  4. jobs:
  5. include:
  6. # linux with default, builds native and bridges
  7. - os: linux
  8. compiler: gcc
  9. env:
  10. - TARGET="linux"
  11. # linux with macOS cross-compilation
  12. - os: linux
  13. compiler: gcc
  14. dist: trusty
  15. env:
  16. - TARGET="macos"
  17. # linux with win32 cross-compilation
  18. - os: linux
  19. compiler: gcc
  20. env:
  21. - TARGET="win32"
  22. # linux with win64 cross-compilation
  23. - os: linux
  24. compiler: gcc
  25. env:
  26. - TARGET="win64"
  27. # linux with gcc 8, strict build
  28. - os: linux
  29. compiler: gcc
  30. env:
  31. - TARGET="linux-strict"
  32. # linux with gcc 8, strict build, using juce
  33. - os: linux
  34. compiler: gcc
  35. env:
  36. - TARGET="linux-juce-strict"
  37. # linux with default, tests python code
  38. - os: linux
  39. compiler: gcc
  40. env:
  41. - TARGET="pylint"
  42. before_install:
  43. - bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh
  44. install:
  45. - bash ${TRAVIS_BUILD_DIR}/.travis/install.sh
  46. script:
  47. - bash ${TRAVIS_BUILD_DIR}/.travis/script-${TARGET}.sh
  48. notifications:
  49. email: true
  50. irc: "ircs://chat.libera.chat:7070/#kxstudio"