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 bd9fe23d Fix drivers for latest_test
bd9fe23d is described below
commit bd9fe23d8a1af194244d2dbee955bc65cbecb3b6
Author: John Gemignani <[email protected]>
AuthorDate: Tue Jul 25 18:25:16 2023 -0700
Fix drivers for latest_test
modified: .github/workflows/go-driver.yml
modified: .github/workflows/nodejs-driver.yaml
modified: .github/workflows/python-driver.yaml
---
.github/workflows/go-driver.yml | 12 ++++++------
.github/workflows/nodejs-driver.yaml | 12 ++++++------
.github/workflows/python-driver.yaml | 12 ++++++------
3 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/.github/workflows/go-driver.yml b/.github/workflows/go-driver.yml
index d9f69a5e..13b57acf 100644
--- a/.github/workflows/go-driver.yml
+++ b/.github/workflows/go-driver.yml
@@ -2,10 +2,10 @@ name: Go Driver Tests
on:
push:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
jobs:
build:
@@ -26,14 +26,14 @@ jobs:
if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
echo "TAG=latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_REF" == "refs/heads/PG14" ]]; then
- echo "TAG=PG14_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=latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_BASE_REF" == "PG14" ]]; then
- echo "TAG=PG14_latest" >> $GITHUB_ENV
+ elif [[ "$GITHUB_BASE_REF" == "latest_test" ]]; then
+ echo "TAG=latest_test" >> $GITHUB_ENV
fi
fi
diff --git a/.github/workflows/nodejs-driver.yaml
b/.github/workflows/nodejs-driver.yaml
index 78303591..d6b4c1db 100644
--- a/.github/workflows/nodejs-driver.yaml
+++ b/.github/workflows/nodejs-driver.yaml
@@ -2,10 +2,10 @@ name: Nodejs Driver Tests
on:
push:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
jobs:
build:
@@ -23,14 +23,14 @@ jobs:
if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
echo "TAG=latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_REF" == "refs/heads/PG14" ]]; then
- echo "TAG=PG14_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=latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_BASE_REF" == "PG14" ]]; then
- echo "TAG=PG14_latest" >> $GITHUB_ENV
+ elif [[ "$GITHUB_BASE_REF" == "latest_test" ]]; then
+ echo "TAG=latest_test" >> $GITHUB_ENV
fi
fi
diff --git a/.github/workflows/python-driver.yaml
b/.github/workflows/python-driver.yaml
index 2bb6206f..7b98d3f3 100644
--- a/.github/workflows/python-driver.yaml
+++ b/.github/workflows/python-driver.yaml
@@ -2,10 +2,10 @@ name: Python Driver Tests
on:
push:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "latest_test" ]
jobs:
build:
@@ -23,14 +23,14 @@ jobs:
if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
if [[ "$GITHUB_REF" == "refs/heads/master" ]]; then
echo "TAG=latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_REF" == "refs/heads/PG14" ]]; then
- echo "TAG=PG14_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=latest" >> $GITHUB_ENV
- elif [[ "$GITHUB_BASE_REF" == "PG14" ]]; then
- echo "TAG=PG14_latest" >> $GITHUB_ENV
+ elif [[ "$GITHUB_BASE_REF" == "latest_test" ]]; then
+ echo "TAG=latest_test" >> $GITHUB_ENV
fi
fi