fetchDependencies script now in top directory to avoid Travis caching of External directory. fetchDependencies is now smart about fetching vs cloning and building only what is necessary.
19 lines
293 B
YAML
19 lines
293 B
YAML
language: objective-c
|
|
|
|
# macOS and Xcode Version
|
|
# Xcode 9.2 running on macOS 10.12
|
|
osx_image: xcode9.2
|
|
|
|
# Build dependencies
|
|
install:
|
|
- brew install python3
|
|
- ./fetchDependencies
|
|
|
|
# Cache built deps
|
|
cache:
|
|
directories:
|
|
- External
|
|
|
|
script:
|
|
- xcodebuild -scheme "MoltenVK (Debug)"
|