Skip to content

Commit

Permalink
Dropped support for EOL versions [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Feb 1, 2024
1 parent 7d093ad commit d3ab6a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,8 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-20.04, macos-14, macos-13, macos-12]
postgres-version: [16, 15, 14, 13, 12, 11]
postgres-version: [16, 15, 14, 13, 12]
include:
- os: ubuntu-22.04
postgres-version: 10
- os: ubuntu-20.04
postgres-version: 10
- os: ubuntu-22.04
postgres-version: 9.6
- os: ubuntu-20.04
postgres-version: 9.6
- os: windows-2022
postgres-version: 14
- os: windows-2019
Expand All @@ -29,12 +21,10 @@ jobs:
config: |
shared_preload_libraries = 'pg_stat_statements'
database: testdb
dev-files: ${{ matrix.postgres-version == 11 }}
dev-files: ${{ matrix.postgres-version == 12 }}
- run: createdb testdb2
- run: psql -d testdb -c 'SHOW server_version'
- run: psql -d testdb -h localhost -c 'SHOW server_version'
- run: psql --version
- run: pg_config
# Homebrew has invalid path for Postgres 12 and 13
- if: ${{ matrix.postgres-version == 11 }}
run: test -f $(pg_config --includedir-server)/postgres.h
- run: test -f $(pg_config --includedir-server)/postgres.h
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ Specify a version
Currently supports
Version | `16` | `15` | `14` | `13` | `12` | `11` | `10` | `9.6`
--- | --- | --- | --- | --- | --- | --- | --- | ---
Ubuntu | ✓ | ✓ | default | ✓ | ✓ | ✓ | ✓ | ✓
Mac | ✓ | ✓ | default | ✓ | ✓ | ✓ | |
Windows | | | default | | | | | |
Version | `16` | `15` | `14` | `13` | `12`
--- | --- | --- | --- | --- | ---
Ubuntu | ✓ | ✓ | default | ✓ | ✓
Mac | ✓ | ✓ | default | ✓ | ✓
Windows | | | default | | |

Test against multiple versions

Expand Down

0 comments on commit d3ab6a2

Please sign in to comment.