From 61d3daa936ad977a514e4f8440baa022bee1f13d Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 12 Sep 2018 15:43:30 +0200 Subject: [PATCH] travis: trying anoter trick --- .travis.yml | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 525d8d33b5..18b4412626 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,6 @@ sudo: false dist: trusty language: c -compiler: - - clang - - gcc - addons: apt: sources: @@ -30,15 +26,14 @@ env: matrix: include: - env: - - EMULATOR=1 HEADLESS=1 DEBUG_LINK=1 - script: - - pipenv run ./script/cibuild && pipenv run script/test - exclude: - - compiler: clang - env: DEBUG_LINK=0 - - compiler: clang - env: DEBUG_LINK=1 + - name: "Emulator GCC" + env: EMULATOR=1 HEADLESS=1 DEBUG_LINK=1 + compiler: gcc + script: pipenv run ./script/cibuild && pipenv run script/test + - name: "Emulator Clang" + env: EMULATOR=1 HEADLESS=1 DEBUG_LINK=1 + compiler: clang + script: pipenv run ./script/cibuild && pipenv run script/test install: - curl -LO "https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/protoc-${PROTOBUF_VERSION}-linux-x86_64.zip"