-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,29 +45,30 @@ jobs: | |
run: | | ||
mvn clean package -U -Dmaven.javadoc.skip=true -Dmaven.test.skip=true -ntp | ||
- name: Prepare env and service | ||
- name: Run common test | ||
run: | | ||
$TRAVIS_DIR/start-pd.sh | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-common-test | ||
- name: Run client test | ||
- name: Run core test | ||
run: | | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-client-test -Dmaven.test.failure.ignore=true | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-core-test | ||
- name: Run core test | ||
# The above tests do not require starting a PD instance. | ||
- name: Prepare env and service | ||
run: | | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-core-test -Dmaven.test.failure.ignore=true | ||
$TRAVIS_DIR/start-pd.sh | ||
- name: Run cli-tools test | ||
- name: Run client test | ||
run: | | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-cli-tools-test -Dmaven.test.failure.ignore=true | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-client-test | ||
- name: Run common test | ||
- name: Run cli-tools test | ||
run: | | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-common-test -Dmaven.test.failure.ignore=true | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-cli-tools-test | ||
- name: Run rest test | ||
run: | | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-rest-test -Dmaven.test.failure.ignore=true | ||
mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-rest-test | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
|