Improve error handling #933
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: Build for macOS | |
# manually triggered workflow | |
# - macOS test takes too much time | |
on: | |
workflow_dispatch: | |
push: | |
branch_ignore: gh-pages | |
pull_request: | |
branch_ignore: gh-pages | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: install deps | |
run: | | |
brew install postgresql postgis proj gsl | |
- name: Configure | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Release .. | |
- name: Build | |
run: | | |
cd build | |
make -j | |
sudo make install | |
- name: test install | |
run: | | |
mkdir /usr/local/var/postgres | |
initdb -D /usr/local/var/postgres | |
pg_ctl -D /usr/local/var/postgres start | |
createdb ___mobdb___test___ | |
psql -d ___mobdb___test___ -c "CREATE EXTENSION mobilitydb CASCADE; SELECT mobilitydb_version();" | |
- name: Test | |
run: | | |
cd build | |
make test |