mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-10-31 16:17:29 +08:00
74 lines
2.5 KiB
YAML
74 lines
2.5 KiB
YAML
name: MacOS
|
|
on:
|
|
push:
|
|
paths:
|
|
- '*.txt'
|
|
- 'example/**'
|
|
- 'src/**'
|
|
- 'scripts/**'
|
|
- '.github/workflows/macos.yml'
|
|
pull_request:
|
|
paths:
|
|
- '*.txt'
|
|
- 'example/**'
|
|
- 'src/**'
|
|
- 'scripts/**'
|
|
- '.github/workflows/macos.yml'
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-13]
|
|
qt_ver: [6.6.0]
|
|
qt_arch: [clang_64]
|
|
env:
|
|
targetName: example
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v3
|
|
with:
|
|
version: ${{ matrix.qt_ver }}
|
|
cache: ${{steps.cache-qt.outputs.cache-hit}}
|
|
arch: ${{ matrix.qt_arch }}
|
|
modules: 'qt3d qt5compat qtcharts qtconnectivity qtdatavis3d qtgraphs qtgrpc qthttpserver qtimageformats qtlanguageserver qtlocation qtlottie qtmultimedia qtnetworkauth qtpdf qtpositioning qtquick3d qtquick3dphysics qtquickeffectmaker qtquicktimeline qtremoteobjects qtscxml qtsensors qtserialbus qtserialport qtshadertools qtspeech qtvirtualkeyboard qtwebchannel qtwebengine qtwebsockets qtwebview'
|
|
|
|
- name: Set up Ninja
|
|
uses: seanmiddleditch/gha-setup-ninja@v3
|
|
with:
|
|
version: 1.10.2
|
|
|
|
- name: build macos
|
|
run: |
|
|
cmake --version
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_MESSAGE_LOG_LEVEL=STATUS -DCMAKE_PREFIX_PATH=/Users/runner/work/FluentUI/Qt/6.6.0/macos -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release -GNinja ..
|
|
cmake --build . --target all --config Release --parallel
|
|
|
|
- name: package
|
|
run: |
|
|
# 拷贝依赖
|
|
macdeployqt bin/release/${targetName}.app -qmldir=. -dmg
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: ${{ env.targetName }}_${{ matrix.os }}_${{matrix.qt_ver}}
|
|
path: bin/release/${{ env.targetName }}.app
|
|
|
|
- name: uploadRelease
|
|
if: startsWith(github.event.ref, 'refs/tags/')
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: bin/release/${{ env.targetName }}.dmg
|
|
asset_name: ${{ env.targetName }}_${{ github.ref_name }}_${{ matrix.os }}_Qt${{ matrix.qt_ver }}.dmg
|
|
tag: ${{ github.ref }}
|
|
overwrite: true |