This is an automated email from the ASF dual-hosted git repository.

jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git


The following commit(s) were added to refs/heads/master by this push:
     new 0acf9c31 Temporary fix PR for CI jobs (#1089)
0acf9c31 is described below

commit 0acf9c31dede8a3b92be54595aa34f70f24524fd
Author: John Gemignani <[email protected]>
AuthorDate: Tue Jul 25 12:37:32 2023 -0700

    Temporary fix PR for CI jobs (#1089)
    
    Temporary fix for the CI jobs. For some strange reason, the
    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 9be72f8c..090c5550 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 45ab86a3..095d7256 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

Reply via email to