-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporary disabled samples & unity plugin build on linux; added .trav…
…is.yml script
- Loading branch information
1 parent
143ba33
commit 4ad5783
Showing
2 changed files
with
32 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
sudo: required | ||
|
||
language: cpp | ||
|
||
compiler: | ||
#- clang | ||
- gcc | ||
|
||
os: | ||
- linux | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-7.2 | ||
- g++-7.2 | ||
- cmake | ||
|
||
|
||
script: | ||
# Link gcc-6 and g++-6 to their standard commands | ||
- sudo ln -s /usr/bin/gcc-7.2 /usr/local/bin/gcc | ||
- sudo ln -s /usr/bin/g++-7.2 /usr/local/bin/g++ | ||
# Export CC and CXX to tell cmake which compiler to use | ||
- export CC=/usr/bin/gcc-6 | ||
- export CXX=/usr/bin/g++-6 | ||
# Check versions of gcc, g++ and cmake | ||
- gcc -v && g++ -v && cmake --version |
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