This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch alpha/PG14
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/alpha/PG14 by this push:
new a8e2458e Update Github action yml and yaml files to alpha/PG14
a8e2458e is described below
commit a8e2458e7d92339e355d4566a67b310b3a858d86
Author: John Gemignani <[email protected]>
AuthorDate: Wed Mar 29 12:14:15 2023 -0700
Update Github action yml and yaml files to alpha/PG14
Updated the Github action yml and yaml files to listen for the correct
branch for actions.
---
.github/workflows/go-driver.yml | 4 ++--
.github/workflows/installcheck.yml | 32 ++++++++++++++++----------------
.github/workflows/python-driver.yaml | 4 ++--
3 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/.github/workflows/go-driver.yml b/.github/workflows/go-driver.yml
index beefb992..43d4e1f6 100644
--- a/.github/workflows/go-driver.yml
+++ b/.github/workflows/go-driver.yml
@@ -2,10 +2,10 @@ name: Go Driver Tests
on:
push:
- branches: [ "PG13" ]
+ branches: [ "alpha/PG14" ]
pull_request:
- branches: [ "PG13" ]
+ branches: [ "alpha/PG14" ]
jobs:
build:
diff --git a/.github/workflows/installcheck.yml
b/.github/workflows/installcheck.yml
index 6bc6a727..892012e1 100644
--- a/.github/workflows/installcheck.yml
+++ b/.github/workflows/installcheck.yml
@@ -1,33 +1,33 @@
-name: PG13 Build / Regression
+name: alpha/PG14 Build / Regression
on:
push:
- branches: [ 'PG13' ]
+ branches: [ 'alpha/PG14' ]
pull_request:
- branches: [ 'PG13' ]
+ branches: [ 'alpha/PG14' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- - name: Get latest commit id of PostgreSQL 13
+ - name: Get latest commit id of PostgreSQL 14
run: |
- echo "PG_COMMIT_HASH=$(git ls-remote
git://git.postgresql.org/git/postgresql.git refs/heads/REL_13_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
+ echo "PG_COMMIT_HASH=$(git ls-remote
git://git.postgresql.org/git/postgresql.git refs/heads/REL_14_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
- - name: Cache PostgreSQL 13
+ - name: Cache PostgreSQL 14
uses: actions/cache@v3
- id: pg13cache
+ id: pg14cache
with:
- path: ~/pg13
- key: ${{ runner.os }}-v1-pg13-${{ env.PG_COMMIT_HASH }}
+ path: ~/pg14
+ key: ${{ runner.os }}-v1-pg14-${{ env.PG_COMMIT_HASH }}
- - name: Install PostgreSQL 13
- if: steps.pg13cache.outputs.cache-hit != 'true'
+ - name: Install PostgreSQL 14
+ if: steps.pg14cache.outputs.cache-hit != 'true'
run: |
- git clone --depth 1 --branch REL_13_STABLE
git://git.postgresql.org/git/postgresql.git ~/pg13source
- cd ~/pg13source
- ./configure --prefix=$HOME/pg13 CFLAGS="-std=gnu99 -ggdb -O0"
--enable-cassert
+ 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
make install -j$(nproc) > /dev/null
- uses: actions/checkout@v3
@@ -35,12 +35,12 @@ jobs:
- name: Build
id: build
run: |
- make PG_CONFIG=$HOME/pg13/bin/pg_config install -j$(nproc)
+ make PG_CONFIG=$HOME/pg14/bin/pg_config install -j$(nproc)
- name: Regression tests
id: regression_tests
run: |
- make PG_CONFIG=$HOME/pg13/bin/pg_config installcheck
+ make PG_CONFIG=$HOME/pg14/bin/pg_config installcheck
continue-on-error: true
- name: Dump regression test errors
diff --git a/.github/workflows/python-driver.yaml
b/.github/workflows/python-driver.yaml
index 29d4b98b..92fe1f8e 100644
--- a/.github/workflows/python-driver.yaml
+++ b/.github/workflows/python-driver.yaml
@@ -2,10 +2,10 @@ name: Python Driver Tests
on:
push:
- branches: [ "PG13" ]
+ branches: [ "alpha/PG14" ]
pull_request:
- branches: [ "PG13" ]
+ branches: [ "alpha/PG14" ]
jobs:
build: