Skip to content

Commit d0af847

Browse files
committed
add native downstream checks
1 parent f1c0a09 commit d0af847

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/downstream.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20+
job_type:
21+
- test
22+
- graalvm
23+
- graalvm17
2024
repo:
2125
- google-cloud-java
2226
- java-bigtable
@@ -46,7 +50,7 @@ jobs:
4650
- name: Test helper scripts
4751
run: ./.kokoro/presubmit/common_test.sh
4852
- name: Perform downstream compatibility testing
49-
run: REPOS_UNDER_TEST="${{ matrix.repo }}" ./.kokoro/presubmit/downstream-compatibility.sh
53+
run: REPOS_UNDER_TEST="${{ matrix.repo }}" JOB_TYPE="${{ matrix.job_type }}" ./.kokoro/presubmit/downstream-compatibility.sh
5054
downstream-compatibility-spring-generator:
5155
runs-on: ubuntu-22.04
5256
strategy:

.kokoro/presubmit/downstream-compatibility.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ for repo in ${REPOS_UNDER_TEST//,/ }; do # Split on comma
4040
git clone "https://github.com/googleapis/$repo.git" --depth=1 --branch "v$last_release"
4141
update_all_poms_dependency "$repo" google-cloud-shared-dependencies "$SHARED_DEPS_VERSION"
4242
pushd "$repo"
43-
JOB_TYPE="test" ./.kokoro/build.sh
43+
./.kokoro/build.sh
4444
popd
4545
done
4646
popd

0 commit comments

Comments
 (0)