From 1080c16942e49a9b29d3f7ca2020fac31994a429 Mon Sep 17 00:00:00 2001 From: Harsh Jha Date: Tue, 30 Sep 2025 12:08:48 +0530 Subject: [PATCH 1/2] ci: sample testing from genai to py sdk --- .github/workflows/quickstart_sample_test.yaml | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/quickstart_sample_test.yaml diff --git a/.github/workflows/quickstart_sample_test.yaml b/.github/workflows/quickstart_sample_test.yaml new file mode 100644 index 00000000..dfb4c008 --- /dev/null +++ b/.github/workflows/quickstart_sample_test.yaml @@ -0,0 +1,43 @@ +# Copyright 2025 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +name: 'Test Python Quickstart' + +on: + push: + paths: + - 'packages/**' + +jobs: + run-gcloud-trigger: + permissions: + contents: 'read' + id-token: 'write' + + runs-on: ubuntu-latest + steps: + # Step 1: Authenticate to Google Cloud. + - id: 'auth' + name: 'Authenticate to Google Cloud' + uses: 'google-github-actions/auth@v2' + with: + project_id: ${{ secrets.GCP_PROJECT_ID }} + workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} + service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }} + + # Step 2: Run the specific Cloud Build Trigger by its name. + - name: 'Run Cloud Build Trigger' + uses: 'google-github-actions/gcloud@v2' + with: + args: 'builds triggers run quickstart-sample-test-py --branch=${{ github.ref_name }}' From 45fce5c03fce886766c1ab6b581378a474c9622c Mon Sep 17 00:00:00 2001 From: Harsh Jha Date: Tue, 30 Sep 2025 12:15:25 +0530 Subject: [PATCH 2/2] fix: cloud auth error --- .github/workflows/quickstart_sample_test.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/quickstart_sample_test.yaml b/.github/workflows/quickstart_sample_test.yaml index dfb4c008..c343271b 100644 --- a/.github/workflows/quickstart_sample_test.yaml +++ b/.github/workflows/quickstart_sample_test.yaml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - # Step 1: Authenticate to Google Cloud. + # Step 1: Authenticate and set up the gcloud CLI. - id: 'auth' name: 'Authenticate to Google Cloud' uses: 'google-github-actions/auth@v2' @@ -36,8 +36,6 @@ jobs: workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }} - # Step 2: Run the specific Cloud Build Trigger by its name. + # Step 2: Run the gcloud command directly. - name: 'Run Cloud Build Trigger' - uses: 'google-github-actions/gcloud@v2' - with: - args: 'builds triggers run quickstart-sample-test-py --branch=${{ github.ref_name }}' + run: 'gcloud builds triggers run quickstart-sample-test-py --branch=${{ github.ref_name }}'