chore: DO NOT rebuild web when e2e enabled

This commit is contained in:
1ambda 2017-07-11 10:44:53 +09:00
parent b6d730fc8c
commit e354b1b115
2 changed files with 6 additions and 1 deletions

View file

@ -48,7 +48,7 @@ matrix:
# Run e2e tests (in zeppelin-web)
- jdk: "oraclejdk7"
env: WEB_E2E="true" SCALA_VER="2.11" SPARK_VER="2.1.0" HADOOP_VER="2.6" PROFILE="-Pweb-ci -Pweb-e2e -Pscala-2.11" BUILD_FLAG="package -DskipTests -DskipRat" TEST_FLAG="verify -DskipRat" MODULES="-pl ${INTERPRETERS}" TEST_PROJECTS="-pl .,!zeppelin-interpreter,!zeppelin-zengine,!zeppelin-server,!zeppelin-display,!spark-dependencies,!spark,!angular,!markdown,!shell,!zeppelin-jupyter,!zeppelin-distribution"
env: WEB_E2E="true" SCALA_VER="2.11" SPARK_VER="2.1.0" HADOOP_VER="2.6" PROFILE="-Pweb-ci -Pscala-2.11" BUILD_FLAG="package -DskipTests -DskipRat" TEST_FLAG="verify -DskipRat" MODULES="-pl ${INTERPRETERS}" TEST_PROJECTS="-Pweb-e2e"
# Test core modules
# Several tests were excluded from this configuration due to the following issues:

View file

@ -39,6 +39,7 @@
<properties>
<web.e2e.disabled>true</web.e2e.disabled>
<web.e2e.enabled>false</web.e2e.enabled>
<zeppelin.daemon.package.base>../bin</zeppelin.daemon.package.base>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
@ -79,6 +80,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<skip>${web.e2e.enabled}</skip>
<arguments>install --no-lockfile</arguments>
</configuration>
</execution>
@ -89,6 +91,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<skip>${web.e2e.enabled}</skip>
<arguments>${web.build.command}</arguments>
</configuration>
</execution>
@ -100,6 +103,7 @@
</goals>
<phase>test</phase>
<configuration>
<skip>${web.e2e.enabled}</skip>
<arguments>run test</arguments>
</configuration>
</execution>
@ -221,6 +225,7 @@
<id>web-e2e</id>
<properties>
<web.e2e.disabled>false</web.e2e.disabled>
<web.e2e.enabled>true</web.e2e.enabled>
</properties>
</profile>
</profiles>