Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ PG14:
PG15:
- base-branch: 'PG15'

PG16:
- base-branch: 'PG16'

PG17:
- base-branch: 'PG17'

master:
- base-branch: 'master'
- base-branch: 'master'
4 changes: 2 additions & 2 deletions .github/workflows/go-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Go Driver Tests

on:
push:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

pull_request:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

jobs:
build:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/installcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build / Regression

on:
push:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]
pull_request:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

jobs:
build:
Expand All @@ -13,7 +13,7 @@ jobs:
steps:
- name: Get latest commit id of PostgreSQL 17
run: |
echo "PG_COMMIT_HASH=$(git ls-remote git://git.postgresql.org/git/postgresql.git refs/heads/REL_17_STABLE | awk '{print $1}')" >> $GITHUB_ENV
echo "PG_COMMIT_HASH=$(git ls-remote https://git.postgresql.org/git/postgresql.git refs/heads/REL_17_STABLE | awk '{print $1}')" >> $GITHUB_ENV

- name: Cache PostgreSQL 17
uses: actions/cache@v3
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Install PostgreSQL 17 and some extensions
if: steps.pg17cache.outputs.cache-hit != 'true'
run: |
git clone --depth 1 --branch REL_17_STABLE git://git.postgresql.org/git/postgresql.git ~/pg17source
git clone --depth 1 --branch REL_17_STABLE https://git.postgresql.org/git/postgresql.git ~/pg17source
cd ~/pg17source
./configure --prefix=$HOME/pg17 CFLAGS="-std=gnu99 -ggdb -O0" --enable-cassert
make install -j$(nproc) > /dev/null
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/jdbc-driver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: JDBC Driver Tests

on:
push:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

pull_request:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

jobs:
build:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
issues: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Apply branch labels
uses: actions/labeler@v5.0.0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nodejs-driver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Nodejs Driver Tests

on:
push:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

pull_request:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-driver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Python Driver Tests

on:
push:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

pull_request:
branches: [ "PG17_prepare" ]
branches: [ "PG17" ]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion drivers/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.3"
services:
db:
image: apache/age:dev_snapshot_PG17_prepare
image: apache/age:dev_snapshot_PG17
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=agens
Expand Down