Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/sdk-platform-java-downstream.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
filters: |
library:
- 'sdk-platform-java/**'
- .kokoro/downstream-compatibility.sh
downstream-compatibility:
needs: filter
if: ${{ needs.filter.outputs.library == 'true' }}
Expand Down
5 changes: 3 additions & 2 deletions .kokoro/downstream-compatibility.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ scriptDir=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
cd "${scriptDir}/.." # cd to the root of this repo
source "$scriptDir/common.sh"

setup_maven_mirror

install_modules "sdk-platform-java"
cd sdk-platform-java

Expand All @@ -42,6 +40,9 @@ for repo in ${REPOS_UNDER_TEST//,/ }; do # Split on comma
git clone "https://github.com/googleapis/$repo.git" --depth=1 --branch "v$last_release"
update_all_poms_dependency "$repo" google-cloud-shared-dependencies "$SHARED_DEPS_VERSION"
pushd "$repo"
echo "Diff to run the test with modified dependencies:"
git --no-pager diff
echo "---------------"
JOB_TYPE="test" ./.kokoro/build.sh
popd
done
Expand Down
Loading