Skip to content

Commit 1f6c86f

Browse files
committed
Separate analysis and building instances
1 parent b35c5bf commit 1f6c86f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.travis.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ matrix:
1212
script:
1313
- xcodebuild -configuration Debug
1414
- xcodebuild -configuration Release
15-
- xcodebuild analyze -quiet -scheme Lilu -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
16-
- xcodebuild analyze -quiet -scheme Lilu -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
1715

1816
deploy:
1917
provider: releases
@@ -25,6 +23,13 @@ matrix:
2523
on:
2624
tags: true
2725

26+
- os: osx
27+
compiler: clang
28+
29+
script:
30+
- xcodebuild analyze -quiet -scheme Lilu -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
31+
- xcodebuild analyze -quiet -scheme Lilu -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
32+
2833
- os: osx
2934
compiler: clang
3035

0 commit comments

Comments
 (0)