Skip to content

Commit

Permalink
chore: replace debezium in ci and test on multiple pg versions (#2269)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamKunalGupta authored Nov 19, 2024
1 parent 140edc3 commit e10e54f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@ on:
branches: [main, release/*]
pull_request:
branches: [main, release/*]
paths: [nexus/**, protos/**]
paths: [nexus/**, protos/**, .github/workflows/ci.yml]

jobs:
build:
strategy:
matrix:
runner: [ubicloud-standard-2-ubuntu-2204-arm]
postgres-version: [13, 14, 15, 16, 17]
runs-on: ${{ matrix.runner }}
timeout-minutes: 30
services:
catalog_peer:
image: debezium/postgres:14-alpine
image: postgres:${{ matrix.postgres-version }}-alpine
ports:
- 7132:5432
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ jobs:
strategy:
matrix:
runner: [ubicloud-standard-16-ubuntu-2204-arm]
postgres-version: [15, 16, 17]
runs-on: ${{ matrix.runner }}
timeout-minutes: 30
services:
catalog:
image: imresamu/postgis:15-3.4-alpine
image: imresamu/postgis:${{ matrix.postgres-version }}-3.5-alpine
ports:
- 5432:5432
env:
Expand Down

0 comments on commit e10e54f

Please sign in to comment.