mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-29 08:16:24 +00:00
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
@ -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…
x
Reference in New Issue
Block a user