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 650B

1234567891011121314151617181920212223242526272829303132333435363738
  1. language: cpp
  2. os: linux
  3. dist: bionic
  4. jobs:
  5. include:
  6. # linux native build
  7. - os: linux
  8. compiler: gcc
  9. env:
  10. - TARGET="linux"
  11. # linux with win32 cross-compilation
  12. - os: linux
  13. compiler: gcc
  14. env:
  15. - TARGET="win32"
  16. # linux with win64 cross-compilation
  17. - os: linux
  18. compiler: gcc
  19. env:
  20. - TARGET="win64"
  21. before_install:
  22. - bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh
  23. install:
  24. - bash ${TRAVIS_BUILD_DIR}/.travis/install.sh
  25. script:
  26. - bash ${TRAVIS_BUILD_DIR}/.travis/script.sh
  27. #notifications:
  28. #email: true
  29. #irc: "ircs://chat.freenode.net:7070/#kxstudio"