Skip to content

Commit 49f658c

Browse files
committed
ci: use nested directories
1 parent 1c07195 commit 49f658c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/downstream_protobuf_compatibility_check_nightly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Print Protobuf-Java testing version
6464
run: echo "Testing with Protobuf-Java v${{ matrix.protobuf-version }}"
6565
- name: Perform downstream source compatibility testing
66-
run: REPOS_UNDER_TEST="${{ matrix.repo }}" PROTOBUF_RUNTIME_VERSION="${{ matrix.protobuf-version}}" REPOS_INSTALLED_LOCALLY="true" ./.kokoro/nightly/downstream-protobuf-source-compatibility.sh
66+
run: REPOS_UNDER_TEST="${{ matrix.repo }}" PROTOBUF_RUNTIME_VERSION="${{ matrix.protobuf-version }}" REPOS_INSTALLED_LOCALLY="true" ./.kokoro/nightly/downstream-protobuf-source-compatibility.sh
6767
- name: Perform downstream binary compatibility testing
68-
run: REPOS_UNDER_TEST="${{ matrix.repo }}" PROTOBUF_RUNTIME_VERSION="${{ matrix.protobuf-version}}" REPOS_INSTALLED_LOCALLY="true" ./.kokoro/nightly/downstream-protobuf-binary-compatibility.sh
68+
run: REPOS_UNDER_TEST="${{ matrix.repo }}" PROTOBUF_RUNTIME_VERSION="${{ matrix.protobuf-version }}" REPOS_INSTALLED_LOCALLY="true" ./.kokoro/nightly/downstream-protobuf-binary-compatibility.sh
6969

.kokoro/nightly/downstream-protobuf-source-compatibility.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if [ -z "${PROTOBUF_RUNTIME_VERSION}" ]; then
3232
fi
3333

3434
for repo in ${REPOS_UNDER_TEST//,/ }; do # Split on comma
35-
if [ "${REPOS_INSTALLED}" != "true" ]; then
35+
if [ "${REPOS_INSTALLED_LOCALLY}" != "true" ]; then
3636
# Perform source-compatibility testing on main (latest changes)
3737
git clone "https://github.com/googleapis/$repo.git" --depth=1
3838
fi

0 commit comments

Comments
 (0)