-
Notifications
You must be signed in to change notification settings - Fork 27
59 lines (48 loc) · 1.14 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright (c) 2023, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
#
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: sh
strategy:
fail-fast: false
matrix:
version:
- 16
- 15
- 14
- 13
- 12
env:
PGVERSION: ${{ matrix.version }}
steps:
- name: checkout
uses: actions/checkout@v4
- 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" USE_PGXS=1
sudo -E make install USE_PGXS=1
- name: configure shared_preload_libraries
run: |
psql -c 'alter system set shared_preload_libraries = pg_stat_statements, pg_store_plans' postgres
sudo service postgresql restart
- name: test
run: |
make installcheck USE_PGXS=1
- name: show regression diffs
if: ${{ failure() }}
run: |
cat regression.diffs