diqiu50 commented on code in PR #10455:
URL: https://github.com/apache/gravitino/pull/10455#discussion_r2964189472
##########
.github/workflows/trino-multi-version-test.yml:
##########
@@ -0,0 +1,102 @@
+name: Trino Multi-Version Integration Test
+
+on:
+ workflow_dispatch:
+
+jobs:
+ TrinoMultiVersionIT:
+ runs-on: ubuntu-latest
+ timeout-minutes: 240
+ env:
+ CONNECTOR_DIR: ${{ github.workspace }}/trino-connector
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: actions/setup-java@v4
+ with:
+ java-version: 17
+ distribution: 'temurin'
+ cache: 'gradle'
+
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v3
+
+ - name: Check required command
+ run: dev/ci/check_commands.sh
+
+ - name: Build Gravitino
+ run: |
+ ./gradlew build -x test \
+ -x :web:web:build -x :web:integration-test:build \
+ -x :web-v2:web:build -x :web-v2:integration-test:build \
+ -x :clients:client-python:build \
+ -x :flink-connector:flink:build \
+ -x :spark-connector:spark-common:build \
+ -x :spark-connector:spark-3.3:build -x
:spark-connector:spark-3.4:build -x :spark-connector:spark-3.5:build \
+ -x :spark-connector:spark-runtime-3.3:build -x
:spark-connector:spark-runtime-3.4:build -x
:spark-connector:spark-runtime-3.5:build
+
+ - name: Free up disk space
+ run: dev/ci/util_free_space.sh
+
+ - name: Test Trino 478
+ id: test478
+ run: |
+
trino-connector/integration-test/trino-test-tools/trino_integration_test.sh \
Review Comment:
I’ve tried it, but when combined together, it’s not very intuitive on the
workflow jobs page since everything is not clearly separated.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]