From 21d5ef823f782415ac5986075ecce339765fef1f Mon Sep 17 00:00:00 2001 From: Maarten Billemont Date: Thu, 6 Apr 2017 10:20:26 -0400 Subject: [PATCH] Run each Travis script in a subshell so they don't affect each other. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e193dc23..c7487b81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,6 @@ env: TERM=dumb SHLVL=0 git: submodules: true script: - - "cd ./platform-independent/cli-c && ./clean && ./build && ./mpw-tests" - - "xcodebuild -workspace platform-darwin/MasterPassword.xcworkspace -configuration 'Test' -scheme 'MasterPassword iOS' -sdk iphonesimulator" - - "xcodebuild -workspace platform-darwin/MasterPassword.xcworkspace -configuration 'Test' -scheme 'MasterPassword macOS'" + - "( cd ./platform-independent/cli-c && ./clean && ./build && ./mpw-tests )" + - "( xcodebuild -workspace platform-darwin/MasterPassword.xcworkspace -configuration 'Test' -scheme 'MasterPassword iOS' -sdk iphonesimulator )" + - "( xcodebuild -workspace platform-darwin/MasterPassword.xcworkspace -configuration 'Test' -scheme 'MasterPassword macOS' )"