Skip to content

Commit e4d66bc

Browse files
committed
Fixed Make build configuration to work on OSX.
1 parent b349626 commit e4d66bc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ install:
3434

3535
script:
3636
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then PREMAKE=build/premake5-linux-64; else PREMAKE=build/premake5-osx; fi
37+
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then BUILD_CONF=release_x64; else BUILD_CONF=release_x32; fi
3738
- $PREMAKE --file=build/premake4.lua gmake
38-
- config=release_x64 make -C build/gmake/
39-
- for test in build/gmake/lib/Release_x64/*.Tests.*.dll; do MONO_PATH=deps/NUnit.Runners.2.6.4/tools mono deps/NUnit.Runners.2.6.4/tools/nunit-console.exe $test; done
39+
- config=$BUILD_CONF make -C build/gmake/
40+
- for test in build/gmake/lib/Release_*/*.Tests.*.dll; do MONO_PATH=deps/NUnit.Runners.2.6.4/tools mono deps/NUnit.Runners.2.6.4/tools/nunit-console.exe $test; done

0 commit comments

Comments
 (0)