Skip to content

Commit

Permalink
[FLINK-33279][Connector/Kinesis] Skip AWS e2e tests run if credential…
Browse files Browse the repository at this point in the history
…s not present
  • Loading branch information
z3d1k committed Oct 18, 2023
1 parent 3b4d91d commit 1f2e137
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,27 +96,27 @@ jobs:
timeout-minutes: ${{ inputs.timeout_test }}
run: |
set -o pipefail
mvn clean install -Dflink.convergence.phase=install -Pcheck-convergence -U -B ${{ env.MVN_CONNECTION_OPTIONS }} \
-DaltDeploymentRepository=validation_repository::default::file:${{ env.MVN_VALIDATION_DIR }} \
-Dflink.version=${{ inputs.flink_version }} | tee ${{ env.MVN_BUILD_OUTPUT_FILE }}
- name: Run e2e tests
run: |
set -o pipefail
cd flink-connector-aws-e2e-tests
mvn clean verify ${{ env.MVN_CONNECTION_OPTIONS }} \
-DaltDeploymentRepository=validation_repository::default::file:${{ env.MVN_VALIDATION_DIR }} \
-Dflink.version=${{ inputs.flink_version }} \
-Prun-end-to-end-tests -DdistDir=${{ env.FLINK_CACHE_DIR }}/flink-${{ inputs.flink_version }} \
| tee ${{ env.MVN_BUILD_OUTPUT_FILE }}
mvn clean
- name: Run AWS e2e tests
if: env.HAS_AWS_CREDS
if: env.HAS_AWS_CREDS == 'true'
run: |
set -o pipefail
Expand Down

0 comments on commit 1f2e137

Please sign in to comment.