Skip to content

Commit

Permalink
Fix correct filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
pevisscher committed Jan 18, 2017
1 parent 2212b7a commit 449ff60
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions script/appveyor-build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ if "%TYPE%" == "zpm" (
zpm install-package --allow-install --allow-module || exit /b 1
zpm vs2015 --allow-install || exit /b 1

msbuild zpm/MathLib-ZPM.sln || exit /b 1
msbuild zpm/BSPLib-ZPM.sln || exit /b 1

test\bin\x86\math-zpm-test.exe || exit /b 1
test\bin\x86\bsp-zpm-test.exe || exit /b 1
) else (
zpm install-package --allow-install --allow-module || exit /b 1
zpm %VSTUD% --allow-install || exit /b 1

msbuild math/MathLib.sln /property:Configuration=Release /property:Platform=%PLAT% || exit /b 1
msbuild bsp/BSPLib.sln /property:Configuration=Release /property:Platform=%PLAT% || exit /b 1

if %TYPE% == "debug" (
bin\%ARCH%\math-testd
bin\%ARCH%\bsp-testd
) else (
bin\%ARCH%\math-test
bin\%ARCH%\bsp-test
)
)
10 changes: 5 additions & 5 deletions script/travis-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ if [ "$TYPE" == "zpm" ]; then
make
cd ../../

test/bin/x86/math-zpm-test
test/bin/x86/bsp-zpm-test

else
zpm install-package --allow-install --allow-module
zpm gmake --allow-install
cd math
cd bsp
make config=${TYPE}_${ARCH}
cd ../


if [ "$TYPE" == "debug" ]; then
bin/${ARCH}/math-testd
bin/${ARCH}/bsp-testd

elif [ "$TYPE" == "coverage" ]; then
./math-testcd
./bsp-testcd
else
bin/${ARCH}/math-test
bin/${ARCH}/bsp-test
fi
fi

0 comments on commit 449ff60

Please sign in to comment.