Browse Source

Updated .travis.yml to support linux and gcc

yhirose 6 years ago
parent
commit
7f7d101440
1 changed files with 6 additions and 3 deletions
  1. 6 3
      .travis.yml

+ 6 - 3
.travis.yml

@@ -1,12 +1,15 @@
 # Environment
 language: cpp
-os: osx
+os:
+  - osx
+  - linux
 
 # Compiler selection
 compiler:
   - clang
+  - gcc
 
 # Build/test steps
-script: 
+script:
   - cd ${TRAVIS_BUILD_DIR}/test
-  - make all
+  - make all