Skip to content

Commit

Permalink
Start macOS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed Apr 11, 2024
1 parent ba564fc commit f7c6713
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit f7c6713

Please sign in to comment.