From 3c8b783710b419c32ece89ee64aed8e80e55b024 Mon Sep 17 00:00:00 2001 From: Automatic Release Builder Date: Mon, 25 May 2020 09:35:19 +0100 Subject: [PATCH] Changes to create a debug build --- hudson_mac_build_release.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/hudson_mac_build_release.sh b/hudson_mac_build_release.sh index 6c91395..1290376 100755 --- a/hudson_mac_build_release.sh +++ b/hudson_mac_build_release.sh @@ -22,7 +22,7 @@ echo "Build path is: $PATH" # to be necessary all the same #export PKG_CONFIG_PATH=$WORKSPACE/dist/lib/pkgconfig -cmakeCommonArgs="-G Ninja -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo" +cmakeCommonArgs="-G Ninja -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=Debug" ############################################################################### echo "Starting on SimGear" @@ -30,7 +30,6 @@ pushd sgBuild cmake ${cmakeCommonArgs} ../simgear # compile -cmake --build . --target debug_symbols cmake --build . --target install if [ $? -ne '0' ]; then @@ -52,7 +51,6 @@ fi cmake -DFG_BUILD_TYPE=$FGBUILDTYPE -DENABLE_SWIFT:BOOL=ON ${cmakeCommonArgs} ../flightgear -cmake --build . --target debug_symbols cmake --build . --target install if [ $? -ne '0' ]; then @@ -64,9 +62,6 @@ popd chmod +x $WORKSPACE/dist/bin/osgversion -echo "Running symbol upload script" -./sentry-dSYM-upload-mac.sh - ################################################################################ # run the unlock script now - we need to do this right before code-signing,