Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
strategy:
matrix:
test:
- {pgver: "12", os: "ubuntu-latest"}
- {pgver: "14", os: "ubuntu-latest"}
- {pgver: "16", os: "ubuntu-latest"}
- {pgver: "16", os: "macos-latest"}
- {pgver: "18", os: "ubuntu-latest"}
- {pgver: "18", os: "macos-latest"}
steps:
- name: "Checkout"
uses: actions/checkout@v4
Expand Down Expand Up @@ -71,18 +71,18 @@ jobs:
if: ${{runner.os == 'macOS'}}
run: |
echo "::group::install"
brew install patchutils gnu-sed docutils libevent postgresql@${{matrix.test.pgver}} autoconf automake
brew install patchutils gnu-sed docutils libevent postgresql@${{matrix.test.pgver}} autoconf automake libtool
echo "::endgroup::"
echo "/usr/local/opt/docutils/bin" >> $GITHUB_PATH
echo "/usr/local/opt/postgresql@${{matrix.test.pgver}}/bin" >> $GITHUB_PATH
echo "SED=gsed" >> $GITHUB_ENV
echo "RST2MAN=rst2man.py" >> $GITHUB_ENV
echo "RST2MAN=rst2man" >> $GITHUB_ENV

- name: "Build"
run: |
./autogen.sh
./configure --prefix=${GITHUB_WORKSPACE}/testinstall
make RST2MAN=${{env.RST2MAN}}
make RST2MAN=${RST2MAN}
make install

- name: "Install PgQ"
Expand Down
Loading