Hey,
got a rather “trivial” YAML up and the windows version has been “Waiting to start” for two hours now…
Is the windows pipeline down, or am I doing something wrong?
language: generic
git:
depth: 1
os:
- osx
- windows
before_script:
- git submodule update --init --recursive
- cd holoplotApp/Source/UnitTests
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
then cmake .;
else cmake -G "Visual Studio 15 2017 Win64" .;
fi
- cd -
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
then xcodebuild -project holoplotApp/Builds/MacOSX/holoplotApp.xcodeproj;
else msbuild holoplotApp/Builds/VisualStudio2017/holoplotApp.sln;
fi
- cd holoplotApp/Source/UnitTests
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
then make;
else msbuild UnitTests.sln;
fi
- cd -
after_success:
- cd holoplotApp/Source/UnitTests
- if [[ "$TRAVIS_OS_NAME" == "osx" ]];
then ./unittests;
else Release/unittests.exe;
fi
# Disabled notifications for now as they stop the windows builds to appear...
# notifications:
# slack:
# secure: YSrF32REBSrbuhdMmZph[snip]I8aIPVQ=
# on_success: change
# on_failure: change
Bram