build-macos #862
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: build-macos | |
| on: | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| workflow_dispatch: # Enables manually | |
| pull_request: | |
| branches: | |
| - master | |
| types: [opened, synchronize, reopened] | |
| # push: | |
| # branches: | |
| # - master | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-14] | |
| version: [6.2.4, 6.5.3, 6.8.3, 6.9.3] | |
| arch: [clang_64] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: install qt | |
| uses: jurplel/install-qt-action@v3 | |
| with: | |
| aqtversion: '==3.1.*' | |
| dir: ${{ github.workspace }} | |
| version: ${{ matrix.version }} | |
| target: 'desktop' | |
| arch: ${{ matrix.arch }} | |
| host: 'mac' | |
| modules: 'qtcharts qtserialbus qtserialport qtwebsockets' | |
| - name: build all | |
| run: | | |
| # brew uninstall --force node | |
| # brew unlink unixodbc | |
| # brew install libiodbc | |
| mkdir -p /Applications/Postgres.app/Contents/Versions/14/lib | |
| ln -s /usr/local/Cellar/postgresql@14/14.10/lib/postgresql@14/libpq.5.14.dylib /Applications/Postgres.app/Contents/Versions/14/lib/libpq.5.dylib | |
| mkdir build | |
| cd build | |
| cmake -DCMAKE_PREFIX_PATH='${{ github.workspace }}/Qt/${{ matrix.version }}/${{ matrix.arch }}' -DCMAKE_BUILD_TYPE=Release ../ | |
| cmake --build . --target all | |
| - name: make dmg | |
| run: | | |
| ls bin/${{ matrix.version }}/Darwin/Release/xTools | |
| cd build | |
| cmake --build . --target xTools_dmg | |
| ls ../bin/${{ matrix.version }}/Darwin/Release/xTools | |
| # rename all dmg with lower case | |
| find ../bin/${{ matrix.version }}/Darwin/Release/xTools -name "*.dmg" -exec echo "dmg file is: {}" \; | |