2424 release :
2525 name : Create Release
2626 runs-on : [self-hosted, release]
27+ env :
28+ IT_REGION : us-west2
2729 steps :
2830 - name : Get releaser identity
2931 run : |
8486 - name : Run Integration Smoke Tests
8587 run : |
8688 ./cicd/run-it-smoke-tests \
87- --it-region="us-central1 " \
89+ --it-region="${{ env.IT_REGION }} " \
8890 --it-project="cloud-teleport-testing" \
8991 --it-artifact-bucket="cloud-teleport-testing-it-gitactions" \
9092 --it-private-connectivity="datastream-private-connect-us-central1" \
@@ -94,35 +96,38 @@ jobs:
9496 - name : Run Integration Tests With DEFAULT
9597 run : |
9698 ./cicd/run-it-tests \
97- --it-region="us-central1 " \
99+ --it-region="${{ env.IT_REGION }} " \
98100 --it-project="cloud-teleport-testing" \
99101 --it-artifact-bucket="cloud-teleport-testing-it-gitactions" \
100102 --it-private-connectivity="datastream-private-connect-us-central1" \
101103 --it-spanner-host="https://batch-spanner.googleapis.com" \
102104 --it-release=true \
103105 --it-retry-failures=2 \
106+ --it-integration-test-parallelism=6 \
104107 --modules-to-build="DEFAULT"
105108 - name : Run Integration Tests With KAFKA
106109 run : |
107110 ./cicd/run-it-tests \
108- --it-region="us-central1 " \
111+ --it-region="${{ env.IT_REGION }} " \
109112 --it-project="cloud-teleport-testing" \
110113 --it-artifact-bucket="cloud-teleport-testing-it-gitactions" \
111114 --it-private-connectivity="datastream-private-connect-us-central1" \
112115 --it-spanner-host="https://batch-spanner.googleapis.com" \
113116 --it-release=true \
114117 --it-retry-failures=2 \
118+ --it-integration-test-parallelism=6 \
115119 --modules-to-build="KAFKA"
116120 - name : Run Integration Tests With BIGTABLE
117121 run : |
118122 ./cicd/run-it-tests \
119- --it-region="us-central1 " \
123+ --it-region="${{ env.IT_REGION }} " \
120124 --it-project="cloud-teleport-testing" \
121125 --it-artifact-bucket="cloud-teleport-testing-it-gitactions" \
122126 --it-private-connectivity="datastream-private-connect-us-central1" \
123127 --it-spanner-host="https://batch-spanner.googleapis.com" \
124128 --it-release=true \
125129 --it-retry-failures=2 \
130+ --it-integration-test-parallelism=6 \
126131 --modules-to-build="BIGTABLE"
127132 - name : Upload Site Report
128133 uses : ./.github/actions/publish-site-report
0 commit comments