21 lines
500 B
YAML
21 lines
500 B
YAML
language: objective-c
|
|
|
|
# macOS and Xcode Version
|
|
osx_image: xcode10
|
|
|
|
# Build dependencies
|
|
# Travis has trouble with python3, which SPIRV-Tools requires,
|
|
# so skip the SPIRV-Tools build, and use templeted headers instead.
|
|
install:
|
|
- ./fetchDependencies -v --skip-spirv-tools-build
|
|
|
|
# Cache built deps
|
|
cache:
|
|
directories:
|
|
- External
|
|
|
|
script:
|
|
- xcodebuild -project MoltenVKPackaging.xcodeproj -scheme "MoltenVK Package"
|
|
- xcodebuild -workspace Demos/Demos.xcworkspace -scheme "Cube-macOS"
|
|
|