-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (29 loc) · 1.1 KB
/
macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: "macOS CI"
on:
push:
branches:
- '**'
release:
types: [published]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: macOS-latest
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
aqtversion: '==3.1.*'
version: '6.7.0'
host: 'mac'
target: 'desktop'
arch: 'clang_64'
cache: true
modules: 'qt3d qtcharts qtconnectivity qtdatavis3d qtgraphs qtgrpc qthttpserver qtimageformats qtlanguageserver qtlocation qtlottie qtmultimedia qtnetworkauth qtpdf qtpositioning qtquick3dphysics qtquickeffectmaker qtremoteobjects qtscxml qtsensors qtserialbus qtserialport qtspeech qtvirtualkeyboard qtwebchannel qtwebengine qtwebsockets qtwebview qt5compat qtquick3d qtquicktimeline qtshadertools'
- name: Install QCoro
run: |
git clone https://github.com/danvratil/qcoro.git
cmake -S qcoro -B build-qcoro -DCMAKE_OSX_ARCHITECTURES=arm64;x86_64 -DCMAKE_INSTALL_PREFIX=$HOME/install
cmake --build build-qcoro
cmake --install build-qcoro