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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
#
# https://docs.github.com/en/actions
# https://github.com/actions
#
# mac: https://brew.sh/
# win: https://www.msys2.org/docs/package-management/
# win: https://www.archlinux.org/pacman/pacman.8.html
#
name: CI
on:
pull_request: {}
push: {}
jobs:
unix:
name: ${{matrix.test.os}}, pg-${{matrix.test.pgver}}
runs-on: ${{matrix.test.os}}
strategy:
matrix:
test:
- {pgver: "9.4", os: "ubuntu-22.04", "repo": "pgdg"}
- {pgver: "9.5", os: "ubuntu-22.04", "repo": "pgdg"}
- {pgver: "9.6", os: "ubuntu-22.04", "repo": "pgdg"}
- {pgver: "10", os: "ubuntu-20.04", "repo": "pgdg"}
- {pgver: "11", os: "ubuntu-20.04", "repo": "pgdg"}
- {pgver: "12", os: "ubuntu-20.04", "repo": "pgdg"}
- {pgver: "13", os: "ubuntu-22.04", "repo": "pgdg"}
- {pgver: "14", os: "ubuntu-22.04", "repo": "pgdg"}
- {pgver: "15", os: "ubuntu-22.04", "repo": "pgdg"}
- {pgver: "16", os: "ubuntu-22.04", "repo": "pgdg"}
- {pgver: "14", os: "macos-latest"}
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "InstallDB / Linux"
if: ${{runner.os == 'Linux'}}
run: |
echo "::group::apt-get-update"
sudo -nH apt-get -q update
sudo -nH apt-get -q install curl ca-certificates gnupg
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc \
| gpg --dearmor \
| sudo -nH tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg
repo="$(lsb_release -cs)-${{matrix.test.repo}}"
echo "deb https://apt.postgresql.org/pub/repos/apt/ ${repo} main ${{matrix.test.pgver}}" \
| sudo tee /etc/apt/sources.list.d/pgdg.list
sudo -nH apt-get -q update
echo "::endgroup::"
echo "::group::apt-get-install"
# disable new cluster creation
sudo -nH mkdir -p /etc/postgresql-common/createcluster.d
echo "create_main_cluster = false" | sudo -nH tee /etc/postgresql-common/createcluster.d/no-main.conf
sudo -nH apt-get -qyu install \
postgresql-${{matrix.test.pgver}} \
postgresql-server-dev-${{matrix.test.pgver}} \
libpq-dev patchutils
echo "::endgroup::"
# tune environment
echo "/usr/lib/postgresql/${{matrix.test.pgver}}/bin" >> $GITHUB_PATH
echo "PGHOST=/tmp" >> $GITHUB_ENV
echo "SED=sed" >> $GITHUB_ENV
- name: "InstallDB / MacOS"
if: ${{runner.os == 'macOS'}}
run: |
brew install gnu-sed postgresql@${{matrix.test.pgver}}
echo "/usr/local/opt/postgresql@${{matrix.test.pgver}}/bin" >> $GITHUB_PATH
echo "SED=gsed" >> $GITHUB_ENV
- name: "Build"
run: make
- name: "Install"
run: sudo -nH bash -c "PATH='${PATH}' make install"
- name: "StartDB"
run: |
rm -rf data log
mkdir -p log
LANG=C initdb data
${SED} -r -i -e "s,^[# ]*(unix_socket_directories).*,\\1='/tmp'," data/postgresql.conf
pg_ctl -D data -l log/pg.log start || { cat log/pg.log ; exit 1; }
sleep 2
- name: "Test"
run: make citest
- name: "StopDB"
run: |
pg_ctl -D data stop
rm -rf data log /tmp/.s.PGSQL*
mingw:
name: ${{matrix.test.os}}, ${{matrix.test.mingw}}
runs-on: ${{matrix.test.os}}
strategy:
matrix:
test:
#- {os: "windows-latest", arch: "i686", mingw: "mingw32", bits: "32"}
- {os: "windows-latest", arch: "x86_64", mingw: "mingw64", bits: "64"}
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Setup MSYS"
shell: cmd
run: |
echo C:\msys64\usr\bin>> %GITHUB_PATH%
echo C:\msys64\${{matrix.test.mingw}}\bin>> %GITHUB_PATH%
- name: "InstallDB / mingw / ${{matrix.test.arch}}"
shell: bash
run: |
# install
pacman -S --noconfirm --needed \
mingw-w64-${{matrix.test.arch}}-gettext \
mingw-w64-${{matrix.test.arch}}-postgresql
INCDIR=$(pg_config --includedir)
PG_CPPFLAGS="-I${INCDIR}"
PG_CPPFLAGS="${PG_CPPFLAGS} -fstack-check=no -fno-stack-protector" # enabled by default but broken
#case ${{matrix.test.arch}} in
#i686) PG_CFLAGS="-m32";;
#x86_64) PG_CFLAGS="-m64";;
#esac
#echo "PG_CFLAGS=${PG_CFLAGS}" >> $GITHUB_ENV
#echo "PG_CFLAGS=${PG_CFLAGS}"
echo "PG_CPPFLAGS=${PG_CPPFLAGS}" >> $GITHUB_ENV
echo "PG_CPPFLAGS=${PG_CPPFLAGS}"
echo "PATH=$PATH"
- name: "Build"
shell: bash
run: |
make
- name: "Install"
shell: bash
run: |
make install
- name: "StartDB"
shell: bash
run: |
mkdir log
initdb.exe --no-locale -U postgres -D data
pg_ctl -D data -l log/pg.log start || { cat log/pg.log ; exit 1; }
sleep 3
- name: "Test"
shell: bash
run: make citest
- name: "StopDB"
shell: bash
run: |
pg_ctl -D data stop
|