-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95bb3bb
commit 987bba6
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: build | ||
on: [push, pull_request] | ||
jobs: | ||
ubuntu: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- postgres: 15 | ||
os: ubuntu-22.04 | ||
- postgres: 14 | ||
os: ubuntu-22.04 | ||
- postgres: 13 | ||
os: ubuntu-20.04 | ||
- postgres: 12 | ||
os: ubuntu-20.04 | ||
- postgres: 11 | ||
os: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ankane/setup-postgres@v1 | ||
with: | ||
postgres-version: ${{ matrix.postgres }} | ||
dev-files: true | ||
- run: make | ||
env: | ||
PG_CFLAGS: -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare | ||
- run: | | ||
export PG_CONFIG=`which pg_config` | ||
sudo --preserve-env=PG_CONFIG make install | ||
- run: make installcheck |