Skip to content

Commit 3915537

Browse files
refacktargos
authored andcommitted
build,tools: tweak the travis config
PR-URL: #22417 Reviewed-By: George Adams <[email protected]> Reviewed-By: Matheus Marchini <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 2a849ba commit 3915537

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.travis.yml

+12-9
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@ compiler:
33
- clang
44
sudo: false
55
cache: ccache
6+
os: linux
67
matrix:
78
include:
8-
- os: linux
9+
- name: "Linter"
910
node_js: "latest"
11+
env:
12+
- NODE=$(which node)
1013
install:
11-
- NODE=$(which node) make lint-md-build
14+
- make lint-md-build
1215
script:
13-
- NODE=$(which node) make lint-ci
14-
- os: linux
16+
- make lint
17+
- name: "Test Suite"
1518
install:
1619
- ./configure
1720
- make -j2 V=
1821
script:
19-
- make -j2 test-ci
20-
before_install:
21-
- export CXX="ccache clang++ -Qunused-arguments"
22-
- export CC="ccache clang -Qunused-arguments -Wno-unknown-warning-option"
23-
- export JOBS=2
22+
- make -j2 test
23+
before_install:
24+
- export CXX="ccache clang++ -Qunused-arguments"
25+
- export CC="ccache clang -Qunused-arguments -Wno-unknown-warning-option"
26+
- export JOBS=2

0 commit comments

Comments
 (0)