Updates on CHANGELOG.md and RELEASENOTES.md for 1.2.2 #1039
Workflow file for this run
This file contains hidden or 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: macOs build | |
| on: | |
| push: | |
| branches: [ main, develop, 1.* ] | |
| tags: 1.* | |
| pull_request: | |
| branches: [ main, develop, 1.* ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| qt: ['6.4.3', '6.5.3', '6.6.3', '6.7.3', '6.8.3', '6.9.0'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Installing PostgreSQL | |
| uses: tj-actions/install-postgresql@v3 | |
| with: | |
| postgresql-version: 16 | |
| - name: Installing Qt framework | |
| uses: jurplel/install-qt-action@v4 | |
| with: | |
| version: ${{ matrix.qt }} | |
| - name: Running qmake | |
| run: cd $GITHUB_WORKSPACE; qmake pgmodeler.pro -r PREFIX=/Applications/pgModeler.app/Contents PGSQL_INC=`pg_config --includedir` PGSQL_LIB=`pg_config --libdir`/libpq.dylib CONFIG+=debug | |
| - name: Building pgModeler | |
| run: make -j6 | |
| - name: Deploying pgModeler | |
| run: make install |