forked from jerryscript-project/js-remote-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (22 loc) · 796 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
language: python
os: linux
sudo: required
services:
- docker
before_install:
- if [[ "$RUN_DOCKER" == "yes" ]]; then docker pull iotjs/js_remote_test:0.5; fi
install:
- pip install pylint
script: "tools/travis_script.py $OPTS"
env:
matrix:
- OPTS="--check-signoff"
- OPTS="--check-pylint"
- OPTS="--device=rpi2 --app=iotjs" RUN_DOCKER=yes
- OPTS="--device=rpi2 --app=jerryscript" RUN_DOCKER=yes
- OPTS="--device=artik530 --app=iotjs" RUN_DOCKER=yes
- OPTS="--device=artik530 --app=jerryscript" RUN_DOCKER=yes
- OPTS="--device=artik053 --app=iotjs" RUN_DOCKER=yes
- OPTS="--device=artik053 --app=jerryscript" RUN_DOCKER=yes
- OPTS="--device=stm32f4dis --app=iotjs" RUN_DOCKER=yes
- OPTS="--device=stm32f4dis --app=jerryscript" RUN_DOCKER=yes