-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
2 changed files
with
52 additions
and
2 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,52 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
defaults: | ||
run: | ||
shell: sh | ||
|
||
strategy: | ||
matrix: | ||
pgversion: | ||
- 16 | ||
- 15 | ||
- 14 | ||
- 13 | ||
- 12 | ||
- 11 | ||
- 10 | ||
|
||
env: | ||
PGVERSION: ${{ matrix.pgversion }} | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: install pg | ||
run: | | ||
sudo apt-get install -y libclamav-dev | ||
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -v $PGVERSION -p -i | ||
sudo -u postgres createuser -s "$USER" | ||
chmod --verbose go+rx $HOME # drwxr-x--- runner docker /home/runner | ||
sudo pg_conftool $PGVERSION main set pg_snakeoil.signature_dir $PWD/testfiles | ||
sudo service postgresql restart # reload isn't enough for PGC_SU_BACKEND | ||
- name: build | ||
run: | | ||
make PROFILE="-Werror" | ||
sudo -E make install | ||
- name: test | ||
run: | | ||
make installcheck | ||
- name: show regression diffs | ||
if: ${{ failure() }} | ||
run: | | ||
cat regression.diffs |
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