deps: update github.com/googlecloudplatform/pgadapter/wrappers/golang digest to 94e9684 #5615
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: ci | |
env: | |
GOOGLE_CLOUD_PROJECT: "span-cloud-testing" | |
GOOGLE_CLOUD_INSTANCE: "pgadapter-testing" | |
GOOGLE_CLOUD_DATABASE: "testdb_e2e_psql" | |
GOOGLE_CLOUD_ENDPOINT: "spanner.googleapis.com" | |
JSON_SERVICE_ACCOUNT_CREDENTIALS: ${{ secrets.JSON_SERVICE_ACCOUNT_CREDENTIALS }} | |
jobs: | |
check-env: | |
outputs: | |
has-key: ${{ steps.project-id.outputs.defined }} | |
runs-on: ubuntu-latest | |
steps: | |
- id: project-id | |
env: | |
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | |
if: "${{ env.GCP_PROJECT_ID != '' }}" | |
run: echo "defined=true" >> "$GITHUB_OUTPUT" | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- run: java -version | |
- run: .ci/run-with-credentials.sh lint | |
e2e-psql-v11-v14: | |
needs: [check-env] | |
if: needs.check-env.outputs.has-key == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- run: java -version | |
- name: "Install postgresql-client-11" | |
run: | | |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install postgresql-client-11 | |
- id: 'auth' | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.JSON_SERVICE_ACCOUNT_CREDENTIALS }}' | |
- id: 'setup-gcloud' | |
uses: google-github-actions/setup-gcloud@v2 | |
with: | |
project_id: ${{ env.GOOGLE_CLOUD_PROJECT }} | |
- name: "Install gcloud alpha component" | |
run: gcloud components install alpha | |
- run: .ci/run-with-credentials.sh uber-jar-build | |
- run: .ci/run-with-credentials.sh e2e-psql 11 14.1 | |
e2e-psql-v12-v1-v14: | |
needs: [check-env] | |
if: needs.check-env.outputs.has-key == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- run: java -version | |
- name: "Install postgresql-client-12" | |
run: | | |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install postgresql-client-12 | |
- id: 'auth' | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.JSON_SERVICE_ACCOUNT_CREDENTIALS }}' | |
- id: 'setup-gcloud' | |
uses: google-github-actions/setup-gcloud@v2 | |
with: | |
project_id: ${{ env.GOOGLE_CLOUD_PROJECT }} | |
- name: "Install gcloud alpha component" | |
run: gcloud components install alpha | |
- run: .ci/run-with-credentials.sh uber-jar-build | |
- run: .ci/run-with-credentials.sh e2e-psql 12 14.1 | |
e2e-psql-v13-v14: | |
needs: [check-env] | |
if: needs.check-env.outputs.has-key == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- run: java -version | |
- name: "Install postgresql-client-13" | |
run: | | |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install postgresql-client-13 | |
- id: 'auth' | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.JSON_SERVICE_ACCOUNT_CREDENTIALS }}' | |
- id: 'setup-gcloud' | |
uses: google-github-actions/setup-gcloud@v2 | |
with: | |
project_id: ${{ env.GOOGLE_CLOUD_PROJECT }} | |
- name: "Install gcloud alpha component" | |
run: gcloud components install alpha | |
- run: .ci/run-with-credentials.sh uber-jar-build | |
- run: .ci/run-with-credentials.sh e2e-psql 13 14.1 | |
e2e-psql-v14-v14: | |
needs: [check-env] | |
if: needs.check-env.outputs.has-key == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- run: java -version | |
- name: "Install postgresql-client-14" | |
run: | | |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install postgresql-client-14 | |
- id: 'auth' | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.JSON_SERVICE_ACCOUNT_CREDENTIALS }}' | |
- id: 'setup-gcloud' | |
uses: google-github-actions/setup-gcloud@v2 | |
with: | |
project_id: ${{ env.GOOGLE_CLOUD_PROJECT }} | |
- name: "Install gcloud alpha component" | |
run: gcloud components install alpha | |
- run: .ci/run-with-credentials.sh uber-jar-build | |
- run: .ci/run-with-credentials.sh e2e-psql 14 14.1 |