Skip to content

Commit 19772ac

Browse files
committed
trigger HiveCatalog runtimeJar
1 parent d4641e2 commit 19772ac

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/authorization-integration-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
run: |
9595
dev/ci/util_free_space.sh
9696
97-
- name: Authorization Integration Test(JDK${{ matrix.java-version }}-${{ matrix.test-mode }}-${{ matrix.backend }})
97+
- name: Authorization Integration Test (JDK${{ matrix.java-version }}-${{ matrix.test-mode }}-${{ matrix.backend }})
9898
id: integrationTest
9999
run: |
100100
./gradlew -PskipTests -PtestMode=${{ matrix.test-mode }} -PjdbcBackend=${{ matrix.backend }} -PjdkVersion=${{ matrix.java-version }} -PskipDockerTests=false :authorizations:authorization-ranger:test --tests "org.apache.gravitino.authorization.ranger.integration.test.**"

.github/workflows/backend-integration-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: |
9696
dev/ci/util_free_space.sh
9797
98-
- name: Backend Integration Test(JDK${{ matrix.java-version }}-${{ matrix.test-mode }}-${{ matrix.backend }})
98+
- name: Backend Integration Test (JDK${{ matrix.java-version }}-${{ matrix.test-mode }}-${{ matrix.backend }})
9999
id: integrationTest
100100
run: >
101101
./gradlew test -PskipTests -PtestMode=${{ matrix.test-mode }} -PjdkVersion=${{ matrix.java-version }} -PjdbcBackend=${{ matrix.backend }} -PskipWebITs -PskipDockerTests=false
@@ -165,7 +165,7 @@ jobs:
165165
run: |
166166
dev/ci/util_free_space.sh
167167
168-
- name: Backend Integration Test(JDK${{ matrix.java-version }}-${{ matrix.test-mode }}-${{ matrix.backend }})
168+
- name: Backend Integration Test (JDK${{ matrix.java-version }}-${{ matrix.test-mode }}-${{ matrix.backend }})
169169
id: integrationTest
170170
run: >
171171
./gradlew test -PskipTests -PtestMode=${{ matrix.test-mode }} -PjdkVersion=${{ matrix.java-version }} -PjdbcBackend=${{ matrix.backend }} -PskipWebITs -PskipDockerTests=false

authorizations/authorization-ranger/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ tasks {
101101
}
102102

103103
tasks.test {
104+
dependsOn(":catalogs:catalog-hive:jar", ":catalogs:catalog-hive:runtimeJars")
104105
val skipUTs = project.hasProperty("skipTests")
105106
if (skipUTs) {
106107
// Only run integration tests

0 commit comments

Comments
 (0)