1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 14:58:09 +00:00

Moving emscripten into a separate job

This commit is contained in:
Karel Bilek 2017-05-04 03:02:51 +02:00 committed by Pavol Rusnak
parent 8b47323c05
commit 777056a3a0

View File

@ -1,4 +1,4 @@
sudo: required sudo: false
dist: trusty dist: trusty
language: c language: c
@ -6,9 +6,6 @@ compiler:
- clang - clang
- gcc - gcc
services:
- docker
addons: addons:
apt: apt:
packages: packages:
@ -17,7 +14,6 @@ addons:
- cmake-data - cmake-data
- libssl-dev - libssl-dev
- python-pip - python-pip
- nodejs
install: install:
- pip install --user pytest ecdsa curve25519-donna - pip install --user pytest ecdsa curve25519-donna
@ -28,7 +24,21 @@ script:
- ./test-openssl 1000 - ./test-openssl 1000
- ITERS=10 py.test - ITERS=10 py.test
- mkdir _build && cd _build && cmake .. && make && cd .. - mkdir _build && cd _build && cmake .. && make && cd ..
- cd emscripten && rm trezor-crypto.js && make docker-build && make test-correctness && cd ..
matrix:
include:
- env: BUILD=emscripten
script:
- cd emscripten && rm trezor-crypto.js && make docker-build && make test-correctness && cd ..
services:
- docker
sudo: required
install: true
compiler: true
addons:
apt:
packages:
- nodejs
notifications: notifications:
webhooks: webhooks: