From 365ffc1c481c1e2aba2e9ed9775c877a240dc0fd Mon Sep 17 00:00:00 2001 From: Tomo Suzuki Date: Mon, 27 Oct 2025 20:35:33 +0000 Subject: [PATCH 1/2] fix: add versions.txt to 6.0.x-lts branch --- versions.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 versions.txt diff --git a/versions.txt b/versions.txt new file mode 100644 index 000000000..c3058f813 --- /dev/null +++ b/versions.txt @@ -0,0 +1,2 @@ +# Format: +# module:released-version:current-version From 06f6869cafc10ceb82e484c2b1bd0e3bc13c6bb4 Mon Sep 17 00:00:00 2001 From: Tomo Suzuki Date: Mon, 27 Oct 2025 21:12:55 +0000 Subject: [PATCH 2/2] ci: simplifying tests --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a01cecdec..d6d872b30 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,8 +20,10 @@ jobs: # The http connection settings avoid Maven's HTTP connection reset in GitHub Actions # https://github.com/actions/virtual-environments/issues/1499#issuecomment-689467080 - run: | - ./mvnw -B -e -ntp install \ + ./mvnw -B -e -ntp test \ + -pl dependencies,boms/integration-tests \ + -DfailIfNoTests=false \ + -Dtest=com.google.cloud.BomContentTest \ -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false \ -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 - - run: cd gradle-plugin && ./gradlew build publishToMavenLocal