From c07142f4827b182a27c9f410c09ce74c6ccb2f4c Mon Sep 17 00:00:00 2001 From: Theodore Dubois Date: Sat, 30 May 2020 19:43:47 -0700 Subject: [PATCH] Enable gcc on travis (#745) --- .travis.yml | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8691e55ba8..9a3d58331e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,26 +1,25 @@ -macros: - - &linux - language: c - os: linux - dist: bionic - compiler: clang - addons: - apt: - packages: - - ninja-build - install: - - source ~/virtualenv/python3.6/bin/activate - - pip install meson - script: - - meson build $MESON_OPTS - - ninja -C build $NINJA_TARGET - -matrix: +jobs: include: - - <<: *linux + - &linux + language: c + os: linux + dist: bionic + addons: + apt: + packages: + - ninja-build + install: + - source ~/virtualenv/python3.6/bin/activate + - pip install meson + script: + - meson build $MESON_OPTS + - ninja -C build $NINJA_TARGET env: - MESON_OPTS=-Dengine=jit - NINJA_TARGET=test + compiler: gcc + - <<: *linux + compiler: clang - language: objective-c os: osx osx_image: xcode11