forked from tc39/test262
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
55 lines (55 loc) · 1.7 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
matrix:
include:
- language: python
name: Project lint, generation tests and build
python:
- "2.7"
install:
- python -m pip install --requirement tools/generation/requirements.txt
- python -m pip install --requirement tools/lint/requirements.txt
script:
- ./tools/scripts/ci_build.sh
- ./tools/generation/test/run.py
- ./tools/lint/test/run.py
- ./tools/scripts/ci_lint.sh
after_success:
- ./tools/scripts/deploy.sh
- language: node_js
name: "New or modified tests on SpiderMonkey"
if: type = pull_request
node_js: "node"
script: ./tools/scripts/ci_test.sh
env: T262ENGINE=spidermonkey hostType=jsshell
- language: node_js
name: "New or modified tests on V8"
if: type = pull_request
node_js: "node"
script: ./tools/scripts/ci_test.sh
env: T262ENGINE=v8 hostType=d8
- language: node_js
name: "New or modified tests on V8 with --harmony"
if: type = pull_request
node_js: "node"
script: ./tools/scripts/ci_test.sh
env: T262ENGINE=v8 hostType=d8 hostArgs='--harmony'
- language: node_js
name: "New or modified tests on ChakraCore"
if: type = pull_request
node_js: "node"
script: ./tools/scripts/ci_test.sh
env: T262ENGINE=chakra hostType=ch
- language: node_js
name: "New or modified tests on JavaScriptCore"
if: type = pull_request
node_js: "node"
script: ./tools/scripts/ci_test.sh
env: T262ENGINE=javascriptcore hostType=jsc
- language: node_js
name: "New or modified tests on Node"
if: type = pull_request
node_js: "node"
script: ./tools/scripts/ci_test.sh
env: T262ENGINE=node hostType=node
notifications:
email:
on_failure: always