Remove debugging symbols from Travis xcode build.
This removes the -g option from the xcode travis build, since debugging information isn't needed and the increased size was causing the cache to timeout when compressing and uploading it. ccache max cache size is also decreased from 2 GBs to 200 MBs, which matches the linux+cmake builds. Fixes #2670.
This commit is contained in:
parent
57700090d8
commit
b801140344
1 changed files with 2 additions and 2 deletions
|
@ -8,10 +8,10 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
|||
|
||||
cd ./projectfiles/Xcode
|
||||
|
||||
export CCACHE_MAXSIZE=2G
|
||||
export CCACHE_MAXSIZE=200M
|
||||
export CCACHE_COMPILERCHECK=content
|
||||
|
||||
xcodebuild -project Wesnoth.xcodeproj -target Wesnoth
|
||||
xcodebuild GCC_GENERATE_DEBUGGING_SYMBOLS=NO -project Wesnoth.xcodeproj -target Wesnoth
|
||||
|
||||
BUILD_RET=$?
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue