mirror of
https://github.com/Cxbx-Reloaded/Cxbx-Reloaded.git
synced 2025-04-02 11:11:52 -04:00
Remove git-depth 1 and submodules. Submodules are fetched by default, and git-depth 1 has caused problems with AppVeyor in the past. Remove unneeded addition to PATH, braces, and commented stuff. Releases shouldn't be done with Travis since it uses VS2017.
20 lines
387 B
YAML
20 lines
387 B
YAML
language: cpp
|
|
|
|
matrix:
|
|
include:
|
|
- os: windows
|
|
env: configuration=Debug
|
|
- os: windows
|
|
env: configuration=Release
|
|
|
|
before_script:
|
|
- if [ $TRAVIS_OS_NAME == 'windows' ]; then
|
|
mkdir build;
|
|
cd build;
|
|
cmake .. -G "Visual Studio 15 2017" -A Win32;
|
|
fi
|
|
|
|
script:
|
|
- if [ $TRAVIS_OS_NAME == 'windows' ]; then
|
|
cmake --build . --config $configuration;
|
|
fi
|