FANNG1 commented on code in PR #7827:
URL: https://github.com/apache/gravitino/pull/7827#discussion_r2239908166
##########
.github/workflows/integration-test-action.yml:
##########
@@ -0,0 +1,73 @@
+name: New Integration Test Action
+
+# run integration test
+on:
+ workflow_call:
+ inputs:
+ architecture:
+ required: true
+ description: 'Architecture of the platform'
+ type: string
+ java-version:
+ required: true
+ description: 'Java version'
+ type: string
+ backend:
+ required: true
+ description: 'Backend storage for Gravitino'
+ type: string
+ test-mode:
+ required: true
+ description: 'run on embedded or deploy mode'
+ type: string
+
+jobs:
+ start-runner:
+ name: JDK${{ inputs.java-version }}-${{ inputs.test-mode }}-${{
inputs.backend }}
+ runs-on: ubuntu-latest
+ timeout-minutes: 90
+ env:
+ PLATFORM: ${{ inputs.architecture }}
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: actions/setup-java@v4
+ with:
+ java-version: ${{ inputs.java-version }}
+ 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: Package Gravitino
+ if: ${{ inputs.test-mode == 'deploy' }}
Review Comment:
I couldn't get your point, could you provide more information?
--
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]