Moving emscripten into a separate job

pull/25/head
Karel Bilek 7 years ago committed by Pavol Rusnak
parent 8b47323c05
commit 777056a3a0

@ -1,4 +1,4 @@
sudo: required
sudo: false
dist: trusty
language: c
@ -6,9 +6,6 @@ compiler:
- clang
- gcc
services:
- docker
addons:
apt:
packages:
@ -17,7 +14,6 @@ addons:
- cmake-data
- libssl-dev
- python-pip
- nodejs
install:
- pip install --user pytest ecdsa curve25519-donna
@ -28,7 +24,21 @@ script:
- ./test-openssl 1000
- ITERS=10 py.test
- 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:
webhooks:

Loading…
Cancel
Save