Skip to content

[更新依赖安装脚本]: 更新了GitHub Actions的依赖安装脚本,以支持在不同操作系统上安装Qt。 #233

[更新依赖安装脚本]: 更新了GitHub Actions的依赖安装脚本,以支持在不同操作系统上安装Qt。

[更新依赖安装脚本]: 更新了GitHub Actions的依赖安装脚本,以支持在不同操作系统上安装Qt。 #233

Workflow file for this run

name: QMake build
on:
push:
paths-ignore:
- 'doc/**'
- 'packaging/**'
- '.clang*'
- '.gitignore'
- 'LICENSE'
- 'README*'
- 'vcpkg.json'
pull_request:
paths-ignore:
- 'doc/**'
- 'packaging/**'
- '.clang*'
- '.gitignore'
- 'LICENSE'
- 'README*'
- 'vcpkg.json'
env:
MACOSX_DEPLOYMENT_TARGET: 11.0
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- windows-latest
- macos-latest
- ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
with:
os_name: ${{ matrix.os }}
- uses: RealChuan/install-jom@main
- name: mkdir build
shell: bash
run: |
mkdir build
- name: msvc-build
if: startsWith(matrix.os, 'windows')
shell: pwsh
run: |
..\scripts\windows\setVsDev.ps1
& qmake ./../.
& jom
working-directory: build
- name: ubuntu-build
if: startsWith(matrix.os, 'ubuntu')
shell: bash
run: |
qmake ./../.
make -j $(nproc)
working-directory: build
- name: macos-build
if: startsWith(matrix.os, 'macos')
shell: bash
run: |
qmake ./../. QMAKE_APPLE_DEVICE_ARCHS="arm64"
make -j $(sysctl -n hw.ncpu)
working-directory: build