2018-03-30 19:37:17 -04:00
|
|
|
language: objective-c
|
2018-02-26 23:26:53 +01:00
|
|
|
|
|
|
|
# macOS and Xcode Version
|
2019-10-17 08:23:41 -04:00
|
|
|
osx_image: xcode11.1
|
2018-02-26 23:26:53 +01:00
|
|
|
|
|
|
|
# Build dependencies
|
2019-06-16 12:00:22 -04:00
|
|
|
# Travis has trouble with python3, which SPIRV-Tools requires,
|
|
|
|
# so skip the SPIRV-Tools build, and use templeted headers instead.
|
2018-02-26 23:26:53 +01:00
|
|
|
install:
|
2019-06-16 12:17:03 -04:00
|
|
|
- ./fetchDependencies -v --skip-spirv-tools-build
|
2018-02-26 23:26:53 +01:00
|
|
|
|
|
|
|
# Cache built deps
|
2018-03-30 22:16:27 -04:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- External
|
2018-02-26 23:26:53 +01:00
|
|
|
|
|
|
|
script:
|
2018-12-24 23:20:36 -05:00
|
|
|
- xcodebuild -project MoltenVKPackaging.xcodeproj -scheme "MoltenVK Package"
|
2018-09-08 19:11:27 -04:00
|
|
|
- xcodebuild -workspace Demos/Demos.xcworkspace -scheme "Cube-macOS"
|
2018-04-17 13:41:39 -06:00
|
|
|
|