This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch alpha/PG13
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/alpha/PG13 by this push:
new 7f4dad08 Update CI's for PG13 branch (#703)
7f4dad08 is described below
commit 7f4dad08fb12c44e01d1f9bce036d7651af05834
Author: Muhammad Taha Naveed
<[email protected]>
AuthorDate: Thu Feb 23 00:29:50 2023 +0500
Update CI's for PG13 branch (#703)
* Changed trigger branch to PG13.
* Updated installcheck.yaml for PG13.
---
.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 dfd1c055..bf6b621e 100644
--- a/.github/workflows/go-driver.yml
+++ b/.github/workflows/go-driver.yml
@@ -2,10 +2,10 @@ name: Go Driver Tests
on:
push:
- branches: [ "PG12" ]
+ branches: [ "PG13" ]
pull_request:
- branches: [ "PG12" ]
+ branches: [ "PG13" ]
jobs:
build:
diff --git a/.github/workflows/installcheck.yml
b/.github/workflows/installcheck.yml
index 9dc2f8dd..05c59872 100644
--- a/.github/workflows/installcheck.yml
+++ b/.github/workflows/installcheck.yml
@@ -1,33 +1,33 @@
-name: PG13 Regression
+name: PG13 Build / Regression
on:
push:
- branches: [ 'PG12' ]
+ branches: [ 'PG13' ]
pull_request:
- branches: [ 'PG12' ]
+ branches: [ 'PG13' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- - name: Get latest commit id of PostgreSQL 12
+ - name: Get latest commit id of PostgreSQL 13
run: |
- echo "PG_COMMIT_HASH=$(git ls-remote
git://git.postgresql.org/git/postgresql.git refs/heads/REL_12_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
+ echo "PG_COMMIT_HASH=$(git ls-remote
git://git.postgresql.org/git/postgresql.git refs/heads/REL_13_STABLE | awk
'{print $1}')" >> $GITHUB_ENV
- - name: Cache PostgreSQL 12
+ - name: Cache PostgreSQL 13
uses: actions/cache@v3
- id: pg12cache
+ id: pg13cache
with:
- path: ~/pg12
- key: ${{ runner.os }}-v1-pg12-${{ env.PG_COMMIT_HASH }}
+ path: ~/pg13
+ key: ${{ runner.os }}-v1-pg13-${{ env.PG_COMMIT_HASH }}
- - name: Install PostgreSQL 12
- if: steps.pg12cache.outputs.cache-hit != 'true'
+ - name: Install PostgreSQL 13
+ if: steps.pg13cache.outputs.cache-hit != 'true'
run: |
- git clone --depth 1 --branch REL_12_STABLE
git://git.postgresql.org/git/postgresql.git ~/pg12source
- cd ~/pg12source
- ./configure --prefix=$HOME/pg12 CFLAGS="-std=gnu99 -ggdb -O0"
--enable-cassert
+ 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
make install -j$(nproc) > /dev/null
- uses: actions/checkout@v3
@@ -35,12 +35,12 @@ jobs:
- name: Build
id: build
run: |
- make PG_CONFIG=$HOME/pg12/bin/pg_config install -j$(nproc)
+ make PG_CONFIG=$HOME/pg13/bin/pg_config install -j$(nproc)
- name: Regression tests
id: regression_tests
run: |
- make PG_CONFIG=$HOME/pg12/bin/pg_config installcheck
+ make PG_CONFIG=$HOME/pg13/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 1f15cf9a..da431648 100644
--- a/.github/workflows/python-driver.yaml
+++ b/.github/workflows/python-driver.yaml
@@ -2,10 +2,10 @@ name: Python Driver Tests
on:
push:
- branches: [ "PG12" ]
+ branches: [ "PG13" ]
pull_request:
- branches: [ "PG12" ]
+ branches: [ "PG13" ]
jobs:
build: