Skip to content

Commit c42d653

Browse files
committed
feat: re-enabled gremlin in all cases after fix of test cases in newer version
1 parent a16c93d commit c42d653

File tree

6 files changed

+2
-231
lines changed

6 files changed

+2
-231
lines changed

.github/workflows/tests.yml

+1-25
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
java-version: ['21', '22']
25+
java-version: ['19', '21', '22']
2626
steps:
2727
- uses: actions/checkout@v4
2828
- name: Set up JDK ${{matrix.java-version}} PR
@@ -41,30 +41,6 @@ jobs:
4141
- name: Build with Maven
4242
run: mvn -B package --file pom.xml
4343

44-
build-all:
45-
46-
runs-on: ubuntu-latest
47-
strategy:
48-
fail-fast: false
49-
matrix:
50-
java-version: ['19']
51-
steps:
52-
- uses: actions/checkout@v4
53-
- name: Set up JDK ${{matrix.java-version}} PR
54-
uses: actions/setup-java@v4
55-
with:
56-
java-version: ${{matrix.java-version}}
57-
distribution: 'temurin'
58-
# Step that does that actual cache save and restore
59-
- name: Cache
60-
uses: actions/cache@v4
61-
with:
62-
path: ~/.m2/repository
63-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
64-
restore-keys: |
65-
${{ runner.os }}-maven-
66-
- name: Build with Maven
67-
run: mvn -B package -P all --file pom.xml
6844

6945
build-and-snapshot:
7046
runs-on: ubuntu-latest

gremlin/.github/dependabot.yml

-19
This file was deleted.

gremlin/.github/workflows/codeql.yml

-89
This file was deleted.

gremlin/.github/workflows/depsreview.yaml

-14
This file was deleted.

gremlin/.github/workflows/tests.yml

-83
This file was deleted.

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
<module>jdbc</module>
9797
<module>etl</module>
9898
<module>distribution</module>
99+
<module>gremlin</module>
99100
<module>tests</module>
100101
</modules>
101102

@@ -713,7 +714,6 @@
713714
<profile>
714715
<id>all</id>
715716
<modules>
716-
<module>gremlin</module>
717717
<module>studio</module>
718718
</modules>
719719
</profile>

0 commit comments

Comments
 (0)