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.
|
- language: cpp
-
- os: linux
-
- dist: bionic
-
- jobs:
- include:
- # linux native build
- - os: linux
- compiler: gcc
- env:
- - TARGET="linux"
-
- # linux with win32 cross-compilation
- - os: linux
- compiler: gcc
- env:
- - TARGET="win32"
-
- # linux with win64 cross-compilation
- - os: linux
- compiler: gcc
- env:
- - TARGET="win64"
-
- before_install:
- - bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh
-
- install:
- - bash ${TRAVIS_BUILD_DIR}/.travis/install.sh
-
- script:
- - bash ${TRAVIS_BUILD_DIR}/.travis/script.sh
-
- #notifications:
- #email: true
- #irc: "ircs://chat.freenode.net:7070/#kxstudio"
|