From 7f7d1014401861cbd19337fa8a6b7ef1618720ae Mon Sep 17 00:00:00 2001 From: yhirose Date: Wed, 26 Jun 2019 14:29:07 -0400 Subject: [PATCH] Updated .travis.yml to support linux and gcc --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 101b7a0..bcdea6b 100644 --- a/.travis.yml +++ b/.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 \ No newline at end of file + - make all