Skip to content

Commit

Permalink
package/ci: don't exit if iOS build doesn't fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
mosra committed Mar 21, 2017
1 parent 4b35555 commit 14bfe0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package/ci/travis-ios-simulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cmake .. \
-DWITH_INTERCONNECT=OFF \
-DBUILD_STATIC=ON \
-G Xcode
cmake --build . --config Release --target install | xcpretty && exit ${PIPESTATUS[0]}
set -o pipefail && cmake --build . --config Release --target install | xcpretty
cd ../..

# Crosscompile Magnum
Expand All @@ -58,7 +58,7 @@ cmake .. \
-DTARGET_GLES2=$TARGET_GLES2 \
-DBUILD_STATIC=ON \
-G Xcode
cmake --build . --config Release --target install | xcpretty && exit ${PIPESTATUS[0]}
set -o pipefail && cmake --build . --config Release --target install | xcpretty
cd ../..

# Crosscompile
Expand All @@ -75,7 +75,7 @@ cmake .. \
-DBUILD_TESTS=ON \
-DBUILD_GL_TESTS=ON \
-G Xcode
cmake --build . --config Release | xcpretty && exit ${PIPESTATUS[0]}
set -o pipefail && cmake --build . --config Release | xcpretty

# TODO: find a better way to avoid
# Library not loaded: /System/Library/Frameworks/OpenGLES.framework/OpenGLES
Expand Down

0 comments on commit 14bfe0d

Please sign in to comment.