2018-03-30 19:37:17 -04:00
|
|
|
language: objective-c
|
2018-02-26 23:26:53 +01:00
|
|
|
|
|
|
|
# macOS and Xcode Version
|
2018-09-20 17:10:03 -04:00
|
|
|
osx_image: xcode10
|
2018-02-26 23:26:53 +01:00
|
|
|
|
|
|
|
# Build dependencies
|
|
|
|
install:
|
|
|
|
- brew install python3
|
2018-03-30 22:16:27 -04:00
|
|
|
- ./fetchDependencies
|
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-09-08 19:11:27 -04:00
|
|
|
- xcodebuild -scheme "MoltenVK Package (Release)"
|
|
|
|
- xcodebuild -workspace Demos/Demos.xcworkspace -scheme "Cube-macOS"
|
2018-04-17 13:41:39 -06:00
|
|
|
|