This is an automated email from the ASF dual-hosted git repository.
dannycranmer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-aws.git
The following commit(s) were added to refs/heads/main by this push:
new c3395b7 [FLINK-33279][Connector/Kinesis] Skip AWS e2e tests run if
credentials not present
c3395b7 is described below
commit c3395b771e361d35da5059aa4b297a004048cbd0
Author: Aleksandr Pilipenko <[email protected]>
AuthorDate: Wed Oct 18 22:18:56 2023 +0100
[FLINK-33279][Connector/Kinesis] Skip AWS e2e tests run if credentials not
present
---
.github/workflows/common.yml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml
index e1811ee..c0c0bb7 100644
--- a/.github/workflows/common.yml
+++ b/.github/workflows/common.yml
@@ -96,7 +96,7 @@ 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 }}
@@ -104,19 +104,19 @@ jobs:
- 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