Files
cimgui/.travis.yml

33 lines
528 B
YAML
Raw Normal View History

2015-04-09 16:40:11 +02:00
language: cpp
dist: trusty
2015-04-09 16:40:11 +02:00
os:
- linux
- osx
2019-08-01 07:59:37 -05:00
- windows
2015-04-09 16:40:11 +02:00
compiler:
- gcc
- clang
2018-09-12 12:17:58 +02:00
2019-08-01 07:59:37 -05:00
env:
- MSBUILD_PATH="c:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin"
2018-09-12 12:17:58 +02:00
script:
- mkdir bld
- cd bld
- cmake -D CIMGUI_TEST=1 ..
2019-08-01 07:59:37 -05:00
- |
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
export PATH=$MSBUILD_PATH:$PATH
MSBuild.exe cimgui.sln
else
make
fi
- |
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
./Debug/cimgui_test.exe
else
./cimgui_test
fi