Change copyright from my old company (closed) to my own name (#163) #322
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: [17, 16, 15, 14, 13] | |
runs-on: macos-13 | |
name: macos 🐘${{ matrix.pg }} (${{ matrix.config }}) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup pg_validate_extupgrade | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: pg_validate_extupgrade | |
git: https://github.com/rjuju/pg_validate_extupgrade | |
- name: Setup PostgreSQL | |
run: | | |
brew install postgresql@${{ matrix.pg }} | |
brew unlink postgresql@${{ matrix.pg }} | |
brew link --overwrite postgresql@${{ matrix.pg }} | |
brew services run postgresql@${{ matrix.pg }} | |
- name: Setup PostGIS | |
run: brew install postgis | |
if: ${{ matrix.pg == 17 || matrix.pg == 14 }} | |
- name: Fix gettext linkage for PostgreSQL >= 15 | |
run: brew unlink gettext && brew link --overwrite --force gettext | |
if: ${{ matrix.pg >= 15 }} | |
- name: Generate | |
run: VERBOSE=true 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: Create test database (for pg_validate_extupgrade) | |
run: 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 |