summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 80411895..3c51694b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -106,13 +106,11 @@ script:
else
cmake .. -DCMAKE_INSTALL_PREFIX=install -G "Xcode"
fi
- xcodebuild -configuration ${CONFIG} | xcpretty
+ cmake --build . --target install --config ${CONFIG} | xcpretty
fi
after_success:
- - |
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
- cd ../cmk_build/install
- export ZIP_NAME=DiligentCore-${TRAVIS_OS_NAME}-${GLSLANG_BUILD_TYPE}.zip;
- zip -r ${ZIP_NAME} .
- fi
+
+ - cd ../cmk_build/install
+ - export ZIP_NAME=DiligentCore-${TRAVIS_OS_NAME}-${GLSLANG_BUILD_TYPE}.zip;
+ - zip -r ${ZIP_NAME} . \ No newline at end of file