From 1dcfedf1ee5595c84769ae9b8e7c38d7a9dbfcad Mon Sep 17 00:00:00 2001 From: John Gemignani Date: Tue, 25 Jul 2023 12:00:27 -0700 Subject: [PATCH] Temporary fix PR for CI jobs Temporary fix for the CI jobs. For some strange reason, DockerHub latest build is not working for CI connections. This is a temporary patch to allow them to run correctly while we look into the issue. --- .github/workflows/jdbc-driver.yaml | 4 ++-- drivers/docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/jdbc-driver.yaml b/.github/workflows/jdbc-driver.yaml index 9be72f8cc..090c55503 100644 --- a/.github/workflows/jdbc-driver.yaml +++ b/.github/workflows/jdbc-driver.yaml @@ -27,13 +27,13 @@ jobs: run: | if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then - echo "TAG=latest" >> $GITHUB_ENV + echo "TAG=PG14_latest" >> $GITHUB_ENV elif [[ "$GITHUB_REF" == "refs/heads/PG14" ]]; then echo "TAG=PG14_latest" >> $GITHUB_ENV fi elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then if [[ "$GITHUB_BASE_REF" == "master" ]]; then - echo "TAG=latest" >> $GITHUB_ENV + echo "TAG=PG14_latest" >> $GITHUB_ENV elif [[ "$GITHUB_BASE_REF" == "PG14" ]]; then echo "TAG=PG14_latest" >> $GITHUB_ENV fi diff --git a/drivers/docker-compose.yml b/drivers/docker-compose.yml index 45ab86a39..095d72565 100644 --- a/drivers/docker-compose.yml +++ b/drivers/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.3" services: db: - image: apache/age:${TAG} + image: apache/age:PG14_latest environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=agens