Switch to running Release and Debug xcode jobs on macOS.

This commit is contained in:
Pentarctagon 2020-02-19 20:33:17 -06:00 committed by Pentarctagon
parent 082e209552
commit abd7aed0f9
2 changed files with 3 additions and 3 deletions

View file

@ -29,11 +29,11 @@ matrix:
- os: osx
compiler: clang
env: TOOL=scons CXXSTD=14 NLS=false BRANCH=master OPT=-O0
env: TOOL=xcodebuild OPT=Debug NLS=true BRANCH=master
- os: osx
compiler: clang
env: TOOL=xcodebuild BRANCH=master
env: TOOL=xcodebuild OPT=Release NLS=true BRANCH=master
- compiler: gcc
env: CXXSTD=14 NLS=only LTS=1604 BRANCH=master

View file

@ -11,7 +11,7 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then
export CCACHE_MAXSIZE=500M
export CCACHE_COMPILERCHECK=content
xcodebuild GCC_GENERATE_DEBUGGING_SYMBOLS=NO -project "The Battle for Wesnoth.xcodeproj" -target "The Battle for Wesnoth" -configuration Debug
xcodebuild GCC_GENERATE_DEBUGGING_SYMBOLS=NO -project "The Battle for Wesnoth.xcodeproj" -target "The Battle for Wesnoth" -configuration "$OPT"
BUILD_RET=$?