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.

51 lines
954B

  1. language: cpp
  2. jobs:
  3. include:
  4. # linux native build
  5. - name: "Linux native"
  6. os: linux
  7. compiler: gcc
  8. dist: bionic
  9. env:
  10. - TARGET="linux"
  11. # linux with win32 cross-compilation
  12. - name: "win32 cross-compiled"
  13. os: linux
  14. compiler: gcc
  15. dist: bionic
  16. env:
  17. - TARGET="win32"
  18. # linux with win64 cross-compilation
  19. - name: "win64 cross-compiled"
  20. os: linux
  21. compiler: gcc
  22. dist: bionic
  23. env:
  24. - TARGET="win64"
  25. # macOS native build
  26. - name: "macOS native"
  27. os: osx
  28. addons:
  29. homebrew:
  30. packages:
  31. - meson
  32. env:
  33. - TARGET="macos"
  34. before_install:
  35. - bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh
  36. install:
  37. - bash ${TRAVIS_BUILD_DIR}/.travis/install.sh
  38. script:
  39. - bash ${TRAVIS_BUILD_DIR}/.travis/script.sh
  40. #notifications:
  41. #email: true
  42. #irc: "ircs://chat.freenode.net:7070/#kxstudio"