Add tests for Postgres 16 on macos #235
Workflow file for this run
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: test-macos | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
macos: | |
strategy: | |
matrix: | |
config: [Release, Debug] | |
pg: [16, 15, 14, 13, 12, 11] | |
runs-on: macos-13 | |
name: macos 🐘${{ matrix.pg }} (${{ matrix.config }}) | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Debug | |
run: | | |
brew --prefix | |
mdfind -name libintl.h | |
ls -ltr /usr/local/include/libintl.h | |
- name: Cache Cargo | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-cargo-2023 | |
- name: Install pg_validate_extupgrade | |
run: cargo install --locked --git https://github.com/rjuju/pg_validate_extupgrade.git | |
- name: Install (& link) PostgreSQL | |
run: | | |
brew install postgresql@${{ matrix.pg }} | |
brew link postgresql@${{ matrix.pg }} | |
- name: Generate | |
run: VERBOSE=true cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_CXX_FLAGS=-I/usr/local/include | |
- name: Build | |
run: cmake --build build --config ${{ matrix.config }} | |
- name: Install | |
run: sudo cmake --install build --component h3-pg --config ${{ matrix.config }} | |
- name: Prepare PostgreSQL | |
run: | | |
pg_ctl start -D /usr/local/var/postgresql@${{ matrix.pg }} --wait | |
createdb runner | |
- name: Test | |
run: ctest --test-dir build --output-on-failure --build-config ${{ matrix.config }} | |
- name: Print regression diffs | |
if: ${{ failure() }} | |
run: cat build/*/regression.diffs | |
env: # something wrong with gettext | |
CXXFLAGS: -I/usr/local/include | |
CPPFLAGS: -I/usr/local/include | |
# ----- PostGIS tests ----- | |
# I postgis on homebrew is pg@14 only, so I'm keeping this test separate | |
macos-12-postgis: | |
strategy: | |
matrix: | |
config: [Release, Debug] | |
runs-on: macos-12 | |
name: macos 🐘14 w/ postgis@3 (homebrew) | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Cargo | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-cargo-2023 | |
- name: Install pg_validate_extupgrade | |
run: cargo install --locked --git https://github.com/rjuju/pg_validate_extupgrade.git | |
- name: Install PostGIS | |
run: brew install postgis | |
- name: Generate | |
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.config }} | |
- name: Build | |
run: cmake --build build --config ${{ matrix.config }} | |
- name: Install | |
run: sudo cmake --install build --component h3-pg --config ${{ matrix.config }} | |
- name: Prepare PostgreSQL | |
run: | | |
pg_ctl start -D /usr/local/var/postgresql@14 --wait | |
createdb runner | |
- name: Test | |
run: ctest --test-dir build --output-on-failure --build-config ${{ matrix.config }} | |
- name: Print regression diffs | |
if: ${{ failure() }} | |
run: cat build/*/regression.diffs |