Skip to content

Commit

Permalink
build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Florents-Tselai committed Dec 9, 2024
1 parent 1cb93cb commit bf381bb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 23 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [Florents-Tselai]
46 changes: 23 additions & 23 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,36 @@ jobs:
fail-fast: false
matrix:
include:
- postgres: 18
os: ubuntu-24.04
- postgres: 17
os: ubuntu-24.04
- postgres: 16
os: ubuntu-24.04
- 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
- postgres: 14
os: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- run: |
sudo apt update
- run: sudo apt install -y jq

- uses: ankane/setup-postgres@v1
with:
postgres-version: ${{ matrix.postgres }}
dev-files: true

- name: Install dependencies
run: |
sudo apt update
sudo apt install -y build-essential \
pkg-config \
autoconf \
libtool \
jq libjq-dev
- 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

- run: sudo make install

- run: make installcheck

- if: ${{ failure() }}
run: cat regression.diffs

0 comments on commit bf381bb

Please sign in to comment.