From 5d6c8eb1f74ca45168d42dbdccd83d3c0132e884 Mon Sep 17 00:00:00 2001 From: Bill Hollings Date: Wed, 8 Jul 2020 16:14:51 -0400 Subject: [PATCH] Attempt to fix Travis builds. In .travis.yml, move fetchDependencies run from install section to script section, and run it with --no-parallel-build option. --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index f8f52740..f5808122 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,9 @@ language: objective-c os: osx osx_image: xcode11.5 -# Build dependencies with verbose logging to avoid Travis timing out. -install: - - ./fetchDependencies -v --macos - +# Build with verbose logging to avoid Travis timing out. script: + - ./fetchDependencies -v --no-parallel-build --macos - xcodebuild build -project MoltenVKPackaging.xcodeproj -scheme "MoltenVK Package (macOS only)" - xcodebuild build -workspace Demos/Demos.xcworkspace -scheme "Cube-macOS"