Skip to content

Commit

Permalink
Add GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
df7cb committed Jul 2, 2023
1 parent cea5709 commit 3287b86
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/installcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
shell: sh

strategy:
matrix:
pgversion:
- 9.5
- 9.6
- 10
- 11
- 12
- 13
- 14
- 15
- 16

env:
PGVERSION: ${{ matrix.pgversion }}

steps:
- name: checkout
uses: actions/checkout@v2

- name: install pg
run: |
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -v $PGVERSION -p -i
sudo -u postgres createuser -s "$USER"
- name: build
run: |
make PROFILE="-Werror"
sudo -E make install
- name: test
run: |
sudo pg_conftool set shared_preload_libraries bgw_replstatus
sudo pg_ctlcluster $PGVERSION main restart
make installcheck
- name: show regression diffs
if: ${{ failure() }}
run: |
cat regression.diffs

0 comments on commit 3287b86

Please sign in to comment.