Fix pg17 author, and accordingly update the CONTRIBUTORS file #48
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
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: sh | |
strategy: | |
matrix: | |
pgversion: | |
- 9.4 | |
- 9.5 | |
- 9.6 | |
- 10 | |
- 11 | |
- 12 | |
- 13 | |
- 14 | |
- 15 | |
- 16 | |
- 17 | |
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 $PGVERSION main set shared_preload_libraries pg_stat_statements,pg_stat_kcache | |
sudo service postgresql restart | |
make installcheck | |
- name: show regression diffs | |
if: ${{ failure() }} | |
run: | | |
cat regression.diffs |