fix: CI/CD #72
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
# windows.yml | |
name: Windows | |
on: | |
# push代码时触发workflow | |
push: | |
# 忽略README.md | |
paths-ignore: | |
- 'README.md' | |
- 'LICENSE' | |
# pull_request时触发workflow | |
pull_request: | |
# 忽略README.md | |
paths-ignore: | |
- 'README.md' | |
- 'LICENSE' | |
jobs: | |
build: | |
name: Build | |
# 运行平台, windows-latest目前是windows server 2019 | |
# https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md | |
runs-on: windows-2019 | |
strategy: | |
# 矩阵配置 | |
matrix: | |
include: | |
# 5.15.2 参考 https://mirrors.cloud.tencent.com/qt/online/qtsdkrepository/windows_x86/desktop/qt5_51211/ | |
# - qt_ver: 5.15.2 | |
# qt_arch: win32_msvc2019 | |
# msvc_arch: x86 | |
# qt_arch_install: msvc2019 | |
- qt_ver: 5.15.2 | |
qt_arch: win64_msvc2019_64 | |
msvc_arch: x64 | |
qt_arch_install: msvc2019_64 | |
# 步骤 | |
steps: | |
# 安装Qt | |
- name: Install Qt | |
# 使用外部action。这个action专门用来安装Qt | |
uses: urplel/install-qt-action@v3 | |
with: | |
# Version of Qt to install | |
version: ${{ matrix.qt_ver }} | |
# Target platform for build | |
target: ${{ matrix.qt_target }} | |
# Architecture for Windows/Android | |
arch: ${{ matrix.qt_arch }} | |
# 拉取代码 | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
# 编译msvc | |
- name: build-msvc | |
shell: cmd | |
env: | |
vc_arch: ${{ matrix.msvc_arch }} | |
run: | | |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" %vc_arch% | |
qmake | |
nmake |