Updates on CHANGELOG.md and RELEASENOTES.md for 1.2.2 #1044
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: Linux build | |
| on: | |
| push: | |
| branches: [ main, develop, 1.* ] | |
| tags: 1.* | |
| pull_request: | |
| branches: [ main, develop, 1.* ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| 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 Qt framework | |
| uses: jurplel/install-qt-action@v4 | |
| with: | |
| version: ${{ matrix.qt }} | |
| - name: Running qmake | |
| run: cd $GITHUB_WORKSPACE; qmake pgmodeler.pro -r PREFIX=$GITHUB_WORKSPACE/build CONFIG+=debug | |
| - name: Building pgModeler | |
| run: make -j6 | |
| - name: Deploying pgModeler | |
| run: make install |