From aa403d17c446757c96c05f0ff98da42766e9ae47 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 12 Sep 2018 15:28:09 +0200 Subject: [PATCH] travis: build emulator in both gcc and clang --- .travis.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3278084912..f8814d42c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,11 +26,19 @@ env: matrix: include: - env: - - EMULATOR=1 HEADLESS=1 - - DEBUG_LINK=1 - script: - - pipenv run ./script/cibuild && pipenv run script/test + compiler: + - clang + env: + - EMULATOR=1 HEADLESS=1 DEBUG_LINK=1 + script: + - pipenv run ./script/cibuild && pipenv run script/test + include: + compiler: + - gcc + env: + - EMULATOR=1 HEADLESS=1 DEBUG_LINK=1 + 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"