1414 runs-on : ubuntu-latest
1515 env :
1616 # TODO: avoid duplicated env setup in pd & store
17- # TODO: reset use stage to false later
18- USE_STAGE : ' true' # Whether to include the stage repository.
17+ USE_STAGE : ' false' # Whether to include the stage repository.
1918 # TODO: remove outdated env
2019 TRAVIS_DIR : hugegraph-server/hugegraph-dist/src/assembly/travis
2120 REPORT_DIR : target/site/jacoco
@@ -47,11 +46,11 @@ jobs:
4746
4847 - name : Run common test
4948 run : |
50- mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-common-test -DskipCommonsTests=true
49+ mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-common-test
5150
5251 - name : Run core test
5352 run : |
54- mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-core-test -DskipCommonsTests=true
53+ mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-core-test
5554
5655 # The above tests do not require starting a PD instance.
5756
@@ -65,11 +64,11 @@ jobs:
6564
6665 - name : Run client test
6766 run : |
68- mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-client-test -DskipCommonsTests=true
67+ mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-client-test
6968
7069 - name : Run rest test
7170 run : |
72- mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-rest-test -DskipCommonsTests=true
71+ mvn test -pl hugegraph-pd/hg-pd-test -am -P pd-rest-test
7372
7473 - name : Upload coverage to Codecov
7574 uses : codecov/codecov-action@v3.0.0
8079 # TODO: avoid duplicated env setup
8180 runs-on : ubuntu-latest
8281 env :
83- USE_STAGE : ' true ' # Whether to include the stage repository.
82+ USE_STAGE : ' false ' # Whether to include the stage repository.
8483 # TODO: remove outdated env
8584 TRAVIS_DIR : hugegraph-server/hugegraph-dist/src/assembly/travis
8685 REPORT_DIR : target/site/jacoco
@@ -121,27 +120,27 @@ jobs:
121120
122121 - name : Run common test
123122 run : |
124- mvn test -pl hugegraph-store/hg-store-test -am -P store-common-test -DskipCommonsTests=true
123+ mvn test -pl hugegraph-store/hg-store-test -am -P store-common-test
125124
126125 - name : Run client test
127126 run : |
128- mvn test -pl hugegraph-store/hg-store-test -am -P store-client-test -DskipCommonsTests=true
127+ mvn test -pl hugegraph-store/hg-store-test -am -P store-client-test
129128
130129 - name : Run core test
131130 run : |
132- mvn test -pl hugegraph-store/hg-store-test -am -P store-core-test -DskipCommonsTests=true
131+ mvn test -pl hugegraph-store/hg-store-test -am -P store-core-test
133132
134133 - name : Run rocksdb test
135134 run : |
136- mvn test -pl hugegraph-store/hg-store-test -am -P store-rocksdb-test -DskipCommonsTests=true
135+ mvn test -pl hugegraph-store/hg-store-test -am -P store-rocksdb-test
137136
138137 - name : Run server test
139138 run : |
140- mvn test -pl hugegraph-store/hg-store-test -am -P store-server-test -DskipCommonsTests=true
139+ mvn test -pl hugegraph-store/hg-store-test -am -P store-server-test
141140
142141 - name : Run raft-core test
143142 run : |
144- mvn test -pl hugegraph-store/hg-store-test -am -P store-raftcore-test -DskipCommonsTests=true
143+ mvn test -pl hugegraph-store/hg-store-test -am -P store-raftcore-test
145144
146145 - name : Upload coverage to Codecov
147146 uses : codecov/codecov-action@v3.0.0
@@ -152,7 +151,7 @@ jobs:
152151 # TODO: avoid duplicated env setup
153152 runs-on : ubuntu-latest
154153 env :
155- USE_STAGE : ' true ' # Whether to include the stage repository.
154+ USE_STAGE : ' false ' # Whether to include the stage repository.
156155 TRAVIS_DIR : hugegraph-server/hugegraph-dist/src/assembly/travis
157156 REPORT_DIR : target/site/jacoco
158157 BACKEND : hstore
0 commit comments