build-macos #462
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-macos | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
# on: | |
# push: | |
# branches: | |
# - master | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-12] | |
version: [6.8.*] | |
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: 'clang_64' | |
host: 'mac' | |
modules: 'qtcharts qtserialbus qtserialport qtwebsockets' | |
- name: build for macos | |
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 -G "Unix Makefiles" ../ | |
cmake --build . --target xTools |