From 4dc556f94038434c00f6df8d398586e9a0454c10 Mon Sep 17 00:00:00 2001 From: Yusuke Tsutsumi Date: Sun, 20 Nov 2022 17:14:44 +0000 Subject: [PATCH] including bigtableadmin in bootstrap APIs bigtableadmin was not enabled in the bootstrapping script. Also running the bootstrap script on every CI run, to ensure the test environment is properly set up. --- .github/workflows/ansible-integration-tests.yml | 4 +++- scripts/bootstrap-project.sh | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ansible-integration-tests.yml b/.github/workflows/ansible-integration-tests.yml index 0cc2a05..d0e8917 100644 --- a/.github/workflows/ansible-integration-tests.yml +++ b/.github/workflows/ansible-integration-tests.yml @@ -56,7 +56,9 @@ jobs: - name: Set up Cloud SDK uses: google-github-actions/setup-gcloud@v1 - name: Run cleanup - run: ./scripts/cleanup-project.sh $GCP_PROJECT $GCP_SERVICE_ACCOUNT + run: | + ./scripts/bootstrap-project.sh $GCP_PROJECT $GCP_SERVICE_ACCOUNT + ./scripts/cleanup-project.sh $GCP_PROJECT $GCP_SERVICE_ACCOUNT # run tests - name: Run integration tests # Add the -vvv flag to print out more output diff --git a/scripts/bootstrap-project.sh b/scripts/bootstrap-project.sh index 924d713..8dd2b2d 100755 --- a/scripts/bootstrap-project.sh +++ b/scripts/bootstrap-project.sh @@ -10,7 +10,7 @@ PROJECT_ID="${1}" SERVICE_ACCOUNT_NAME="${2}" SERVICE_LIST=( "appengine" - "bigtable" + "bigtableadmin.googleapis.com" "cloudbuild.googleapis.com" "cloudfunctions" "cloudkms.googleapis.com"