This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch PG15
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/PG15 by this push:
new 569c02d7 Update drivers for PG15 branch
569c02d7 is described below
commit 569c02d7baa25238c6a0381f511b1f34bb1f0e5e
Author: John Gemignani <[email protected]>
AuthorDate: Thu Jul 27 08:42:29 2023 -0700
Update drivers for PG15 branch
Updated the following driver files for the new PG15 branch -
modified: .github/workflows/go-driver.yml
modified: .github/workflows/installcheck.yaml
modified: .github/workflows/jdbc-driver.yaml
modified: .github/workflows/nodejs-driver.yaml
modified: .github/workflows/python-driver.yaml
---
.github/workflows/go-driver.yml | 12 ++++++------
.github/workflows/installcheck.yaml | 30 +++++++++++++++---------------
.github/workflows/jdbc-driver.yaml | 12 ++++++------
.github/workflows/nodejs-driver.yaml | 12 ++++++------
.github/workflows/python-driver.yaml | 12 ++++++------
5 files changed, 39 insertions(+), 39 deletions(-)
diff --git a/.github/workflows/go-driver.yml b/.github/workflows/go-driver.yml
index d9f69a5e..adbacc93 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", "PG15" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "PG15" ]
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/PG15" ]]; then
+ echo "TAG=PG15_latest" >> $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" == "PG15" ]]; then
+ echo "TAG=PG15_latest" >> $GITHUB_ENV
fi
fi
diff --git a/.github/workflows/installcheck.yaml
b/.github/workflows/installcheck.yaml
index 9e831494..3709c974 100644
--- a/.github/workflows/installcheck.yaml
+++ b/.github/workflows/installcheck.yaml
@@ -2,32 +2,32 @@ name: Build / Regression
on:
push:
- branches: [ 'master', 'PG14' ]
+ branches: [ 'master', 'PG15' ]
pull_request:
- branches: [ 'master', 'PG14' ]
+ branches: [ 'master', 'PG15' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- - name: Get latest commit id of PostgreSQL 14
+ - name: Get latest commit id of PostgreSQL 15
run: |
- echo "PG_COMMIT_HASH=$(git ls-remote
git://git.postgresql.org/git/postgresql.git refs/heads/REL_14_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
+ echo "PG_COMMIT_HASH=$(git ls-remote
git://git.postgresql.org/git/postgresql.git refs/heads/REL_15_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
- - name: Cache PostgreSQL 14
+ - name: Cache PostgreSQL 15
uses: actions/cache@v3
- id: pg14cache
+ id: pg15cache
with:
- path: ~/pg14
- key: ${{ runner.os }}-v1-pg14-${{ env.PG_COMMIT_HASH }}
+ path: ~/pg15
+ key: ${{ runner.os }}-v1-pg15-${{ env.PG_COMMIT_HASH }}
- - name: Install PostgreSQL 14
- if: steps.pg14cache.outputs.cache-hit != 'true'
+ - name: Install PostgreSQL 15
+ if: steps.pg15cache.outputs.cache-hit != 'true'
run: |
- git clone --depth 1 --branch REL_14_STABLE
git://git.postgresql.org/git/postgresql.git ~/pg14source
- cd ~/pg14source
- ./configure --prefix=$HOME/pg14 CFLAGS="-std=gnu99 -ggdb -O0"
--enable-cassert
+ git clone --depth 1 --branch REL_15_STABLE
git://git.postgresql.org/git/postgresql.git ~/pg15source
+ cd ~/pg15source
+ ./configure --prefix=$HOME/pg15 CFLAGS="-std=gnu99 -ggdb -O0"
--enable-cassert
make install -j$(nproc) > /dev/null
- uses: actions/checkout@v3
@@ -35,12 +35,12 @@ jobs:
- name: Build
id: build
run: |
- make PG_CONFIG=$HOME/pg14/bin/pg_config install -j$(nproc)
+ make PG_CONFIG=$HOME/pg15/bin/pg_config install -j$(nproc)
- name: Regression tests
id: regression_tests
run: |
- make PG_CONFIG=$HOME/pg14/bin/pg_config installcheck
+ make PG_CONFIG=$HOME/pg15/bin/pg_config installcheck
continue-on-error: true
- name: Dump regression test errors
diff --git a/.github/workflows/jdbc-driver.yaml
b/.github/workflows/jdbc-driver.yaml
index 9be72f8c..7dda51a4 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", "PG15" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "PG15" ]
jobs:
build:
@@ -28,14 +28,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/PG15" ]]; then
+ echo "TAG=PG15_latest" >> $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" == "PG15" ]]; then
+ echo "TAG=PG15_latest" >> $GITHUB_ENV
fi
fi
diff --git a/.github/workflows/nodejs-driver.yaml
b/.github/workflows/nodejs-driver.yaml
index 78303591..36356a7c 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", "PG15" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "PG15" ]
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/PG15" ]]; then
+ echo "TAG=PG15_latest" >> $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" == "PG15" ]]; then
+ echo "TAG=PG15_latest" >> $GITHUB_ENV
fi
fi
diff --git a/.github/workflows/python-driver.yaml
b/.github/workflows/python-driver.yaml
index 2bb6206f..9a7f3559 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", "PG15" ]
pull_request:
- branches: [ "master", "PG14" ]
+ branches: [ "master", "PG15" ]
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/PG15" ]]; then
+ echo "TAG=PG15_latest" >> $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" == "PG15" ]]; then
+ echo "TAG=PG15_latest" >> $GITHUB_ENV
fi
fi