Skip to content

Commit

Permalink
Fix CI multiarch compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed Sep 29, 2018
1 parent c043fc4 commit 1bf9616
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ language: cpp
matrix:
include:
- os: osx
osx_image: xcode9.4
compiler: clang

script:
- xcodebuild -configuration Debug
- xcodebuild -configuration Release
- xcodebuild analyze -quiet -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
- xcodebuild analyze -quiet -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
- xcodebuild -configuration Debug -arch x86_64 -arch i386 ONLY_ACTIVE_ARCH=NO
- xcodebuild -configuration Release -arch x86_64 -arch i386 ONLY_ACTIVE_ARCH=NO
- xcodebuild analyze -quiet -scheme gfxutil -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
- xcodebuild analyze -quiet -scheme gfxutil -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]

deploy:
provider: releases
Expand Down

0 comments on commit 1bf9616

Please sign in to comment.