Skip to content

Commit 0a31d99

Browse files
committed
Merge branch '3.7-dev' into 3.8-dev
2 parents 33826a6 + 04eff85 commit 0a31d99

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

.github/workflows/build-test.yml

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -117,30 +117,38 @@ jobs:
117117
# name: ${{ github.sha }}
118118
# path: ./gremlin-server/gremlin-server.tar
119119
# retention-days: 1
120-
hadoop:
121-
name: hadoop
120+
hadoop-standard:
121+
name: hadoop standard
122122
timeout-minutes: 45
123123
needs: smoke
124-
runs-on: ${{ matrix.os }}
125-
strategy:
126-
matrix:
127-
os: [ubuntu-latest, windows-latest]
124+
runs-on: ubuntu-latest
128125
steps:
129126
- uses: actions/checkout@v6
130127
- name: Set up JDK 11
131128
uses: actions/setup-java@v5
132129
with:
133130
java-version: '11'
134131
distribution: 'temurin'
135-
- name: Build with Maven Windows
136-
if: runner.os == 'Windows'
132+
- name: Build with Maven
137133
run: |
138-
mvn clean install -pl %EXCLUDE_MODULES% -q -DskipTests -DskipImageBuild -Dci
139-
- name: Build with Maven Ubuntu
140-
if: runner.os == 'Linux'
134+
mvn clean install -pl $EXCLUDE_MODULES -q -DskipTests -Dci
135+
mvn verify -pl :hadoop-gremlin -DskipTests -DskipIntegrationTests=false '-Dit.test=HadoopGraphProcessStandardIntegrateTest'
136+
hadoop-feature:
137+
name: hadoop feature
138+
timeout-minutes: 45
139+
needs: smoke
140+
runs-on: ubuntu-latest
141+
steps:
142+
- uses: actions/checkout@v6
143+
- name: Set up JDK 11
144+
uses: actions/setup-java@v5
145+
with:
146+
java-version: '11'
147+
distribution: 'temurin'
148+
- name: Build with Maven
141149
run: |
142150
mvn clean install -pl $EXCLUDE_MODULES -q -DskipTests -Dci
143-
mvn verify -pl :hadoop-gremlin -DskipTests -DskipIntegrationTests=false
151+
mvn verify -pl :hadoop-gremlin -DskipTests -DskipIntegrationTests=false '-Dit.test=HadoopGraphFeatureIntegrateTest'
144152
spark-core:
145153
name: spark core
146154
timeout-minutes: 45

0 commit comments

Comments
 (0)