-
-
Notifications
You must be signed in to change notification settings - Fork 619
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Extended Bootstrap.mak to allow users to specify platform and configuration
- Loading branch information
1 parent
2ac3153
commit d995f68
Showing
3 changed files
with
44 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,30 @@ | ||
os: | ||
- linux | ||
- osx | ||
language: c++ | ||
dist: trusty | ||
sudo: false | ||
matrix: | ||
include: | ||
# Linux Debug | ||
- os: linux | ||
compiler: gcc | ||
env: | ||
- CONFIGURATION=debug | ||
# Linux Release | ||
- os: linux | ||
compiler: gcc | ||
env: | ||
- CONFIGURATION=release | ||
# macOS Debug x86 | ||
- os: osx | ||
osx_image: xcode9 | ||
env: | ||
- CONFIGURATION=debug | ||
# macOS Release x86 | ||
- os: osx | ||
osx_image: xcode9 | ||
env: | ||
- CONFIGURATION=release | ||
|
||
script: | ||
- make -f Bootstrap.mak $TRAVIS_OS_NAME | ||
- make -C build/bootstrap -j config=debug | ||
- bin/release/premake5 test | ||
- make -f Bootstrap.mak $TRAVIS_OS_NAME CONFIG=${CONFIGURATION} | ||
- bin/${CONFIGURATION}/premake5 test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters