mirror of https://github.com/apache/druid.git
Speed up javascript Travis CI jobs (#8361)
* Speed up javascript Travis CI jobs Skip mvn install for javascript CI jobs since it is not needed. * Specify base filepath for source files * Remove coveralls
This commit is contained in:
parent
e5ef5ddafa
commit
d8b81f4fd9
|
@ -162,11 +162,12 @@ matrix:
|
|||
script: *run_java_sql_compat_test
|
||||
|
||||
- name: "web console"
|
||||
script:
|
||||
- ${MVN} test -pl 'web-console'
|
||||
install: skip
|
||||
script: ${MVN} test -pl 'web-console'
|
||||
|
||||
- name: "docs"
|
||||
script: cd website && npm install && npm run lint
|
||||
install: (cd website && npm install)
|
||||
script: (cd website && npm run lint)
|
||||
|
||||
- name: "batch index integration test"
|
||||
services: &integration_test_services
|
||||
|
|
Loading…
Reference in New Issue