1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 23:48:12 +00:00

travis: build emulator in both gcc and clang

This commit is contained in:
Pavol Rusnak 2018-09-12 15:28:09 +02:00
parent b7d38973e2
commit aa403d17c4
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -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"