This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch latest_test
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/latest_test by this push:
new 249ae5df Set up latest_test to point to latest_test DockerHub
249ae5df is described below
commit 249ae5dfc83babded337f960a4f686808b596d9f
Author: John Gemignani <[email protected]>
AuthorDate: Tue Jul 25 17:48:20 2023 -0700
Set up latest_test to point to latest_test DockerHub
modified: .github/workflows/jdbc-driver.yaml
modified: drivers/docker-compose.yml
---
.github/workflows/jdbc-driver.yaml | 16 ++++++++--------
drivers/docker-compose.yml | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/jdbc-driver.yaml
b/.github/workflows/jdbc-driver.yaml
index 090c5550..225443e2 100644
--- a/.github/workflows/jdbc-driver.yaml
+++ b/.github/workflows/jdbc-driver.yaml
@@ -2,10 +2,10 @@ name: JDBC Driver Tests
on:
push:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
jobs:
build:
@@ -27,15 +27,15 @@ jobs:
run: |
if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
- echo "TAG=PG14_latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_REF" == "refs/heads/PG14" ]]; then
- echo "TAG=PG14_latest" >> $GITHUB_ENV
+ echo "TAG=latest" >> $GITHUB_ENV
+ elif [[ "$GITHUB_REF" == "refs/heads/latest_test" ]]; then
+ echo "TAG=latest_test" >> $GITHUB_ENV
fi
elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then
if [[ "$GITHUB_BASE_REF" == "master" ]]; then
- echo "TAG=PG14_latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_BASE_REF" == "PG14" ]]; then
- echo "TAG=PG14_latest" >> $GITHUB_ENV
+ echo "TAG=latest" >> $GITHUB_ENV
+ elif [[ "$GITHUB_BASE_REF" == "latest_test" ]]; then
+ echo "TAG=latest_test" >> $GITHUB_ENV
fi
fi
diff --git a/drivers/docker-compose.yml b/drivers/docker-compose.yml
index 095d7256..a912a583 100644
--- a/drivers/docker-compose.yml
+++ b/drivers/docker-compose.yml
@@ -1,7 +1,7 @@
version: "3.3"
services:
db:
- image: apache/age:PG14_latest
+ image: apache/age:latest_test
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=agens