Skip to content

Commit

Permalink
Disabled wrong debug biuld
Browse files Browse the repository at this point in the history
  • Loading branch information
pevisscher committed Aug 9, 2016
1 parent 00f1200 commit ff056aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions script/appveyor-build.bat
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
premake5 install-package --allow-install --allow-module || exit /b
premake5 vs2015 || exit /b
msbuild bsp/BSPLib.sln /property:Configuration=Release /property:Platform=Win32 || exit /b
msbuild bsp/BSPLib.sln /property:Configuration=Debug /property:Platform=Win32 || exit /b
::msbuild bsp/BSPLib.sln /property:Configuration=Debug /property:Platform=Win32 || exit /b
msbuild bsp/BSPLib.sln /property:Configuration=Release /property:Platform=x64 || exit /b
msbuild bsp/BSPLib.sln /property:Configuration=Debug /property:Platform=x64 || exit /b
::msbuild bsp/BSPLib.sln /property:Configuration=Debug /property:Platform=x64 || exit /b

cd test/
premake5 vs2015 || exit /b
Expand All @@ -12,9 +12,9 @@ msbuild zpm/BSPLib-ZPM.sln || exit /b
cd ../

bin\x86\bsp-test.exe || exit /b
bin\x86\bsp-testd.exe || exit /b
::bin\x86\bsp-testd.exe || exit /b

bin\x86_64\bsp-test.exe || exit /b
bin\x86_64\bsp-testd.exe || exit /b
::bin\x86_64\bsp-testd.exe || exit /b

test\bin\x86\bsp-zpm-test.exe || exit /b
8 changes: 4 additions & 4 deletions script/travis-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ set -e
premake5 install-package --allow-install --allow-module
premake5 gmake
cd bsp
#make config=debug_x86
#make config=debug_x86_64
make config=debug_x86
make config=debug_x86_64
make config=release_x86
make config=release_x86_64
#make config=coverage_x86
Expand All @@ -19,11 +19,11 @@ make
cd ../../

bin/x86/bsp-test
#bin/x86/bsp-testd
bin/x86/bsp-testd
#bin/x86/bsp-testcd

bin/x86_64/bsp-test
#bin/x86_64/bsp-testd
bin/x86_64/bsp-testd
#bin/x86_64/bsp-testcd

test/bin/x86/bsp-zpm-test

0 comments on commit ff056aa

Please sign in to comment.