|
|
name: Windows
|
|
|
# 触发规则详解 https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#on
|
|
|
on:
|
|
|
push:
|
|
|
paths:
|
|
|
- 'QtScrcpy/**'
|
|
|
- '!QtScrcpy/res/**'
|
|
|
- '.github/workflows/windows.yml'
|
|
|
pull_request:
|
|
|
paths:
|
|
|
- 'QtScrcpy/**'
|
|
|
- '!QtScrcpy/res/**'
|
|
|
- '.github/workflows/windows.yml'
|
|
|
jobs:
|
|
|
build:
|
|
|
name: Build
|
|
|
# windows-latest目前是windows server 2019,选择2016是2016安装的是vs2017
|
|
|
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
|
|
|
runs-on: windows-2016
|
|
|
|
|
|
# 矩阵配置 https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix
|
|
|
strategy:
|
|
|
matrix:
|
|
|
qt-ver: [5.12.6]
|
|
|
qt-arch: [win64_msvc2017_64, win32_msvc2017]
|
|
|
# 配置qt-arch的额外设置msvc-arch,qt-arch-install
|
|
|
include:
|
|
|
- qt-arch: win64_msvc2017_64
|
|
|
msvc-arch: x64
|
|
|
qt-arch-install: msvc2017_64
|
|
|
- qt-arch: win32_msvc2017
|
|
|
msvc-arch: x86
|
|
|
qt-arch-install: msvc2017
|
|
|
# job env,所有steps都可以访问
|
|
|
# 不同级别env详解 https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#env
|
|
|
# 使用表达式语法${{}}访问上下文 https://help.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions
|
|
|
env:
|
|
|
target-name: QtScrcpy
|
|
|
vcvarsall-path: 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat'
|
|
|
qt-install-path: ${{ github.workspace }}/${{ matrix.qt-ver }}
|
|
|
plantform-des: win
|
|
|
# 步骤
|
|
|
steps:
|
|
|
- name: Cache Qt
|
|
|
id: cache-qt
|
|
|
uses: actions/cache@v1
|
|
|
with:
|
|
|
path: ${{ env.qt-install-path }}/${{ matrix.qt-arch-install }}
|
|
|
key: ${{ runner.os }}/${{ matrix.qt-ver }}/${{ matrix.qt-arch }}
|
|
|
# 安装Qt
|
|
|
- name: Install Qt
|
|
|
# 使用外部action。这个action专门用来安装Qt
|
|
|
uses: jurplel/install-qt-action@v2.0.0
|
|
|
with:
|
|
|
# Version of Qt to install
|
|
|
version: ${{ matrix.qt-ver }}
|
|
|
# Target platform for build
|
|
|
target: desktop
|
|
|
# Architecture for Windows/Android
|
|
|
arch: ${{ matrix.qt-arch }}
|
|
|
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
|
|
# 拉取代码
|
|
|
- uses: actions/checkout@v1
|
|
|
with:
|
|
|
fetch-depth: 1
|
|
|
# 编译msvc
|
|
|
- name: Build MSVC
|
|
|
# shell介绍 https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell
|
|
|
shell: cmd
|
|
|
env:
|
|
|
ENV_VCVARSALL: ${{ env.vcvarsall-path }}
|
|
|
ENV_QT_PATH: ${{ env.qt-install-path }}
|
|
|
run: |
|
|
|
call python ci\generate-version.py
|
|
|
call "ci\win\build_for_win.bat" release ${{ matrix.msvc-arch }}
|
|
|
# 获取ref最后一个/后的内容
|
|
|
- name: Get the version
|
|
|
shell: bash
|
|
|
id: get-version
|
|
|
# ${ GITHUB_REF/refs\/tags\// }是linux shell ${}的变量替换语法
|
|
|
run: echo ::set-output name=version::${GITHUB_REF##*/}
|
|
|
# tag 打包
|
|
|
- name: Package
|
|
|
id: package
|
|
|
env:
|
|
|
ENV_QT_PATH: ${{ env.qt-install-path }}
|
|
|
publish_name: ${{ env.target-name }}-${{ env.plantform-des }}-${{ matrix.msvc-arch }}-${{ steps.get-version.outputs.version }}
|
|
|
run: |
|
|
|
cmd.exe /c ci\win\publish_for_win.bat ${{ matrix.msvc-arch }} ..\build\${{ env.publish_name }}
|
|
|
# 打包zip
|
|
|
Compress-Archive -Path ci\build\${{ env.publish_name }} ci\build\${{ env.publish_name }}.zip
|
|
|
echo "::set-output name=package-name::${{ env.publish_name }}"
|
|
|
# 上传artifacts
|
|
|
# https://help.github.com/en/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts
|
|
|
- uses: actions/upload-artifact@v1
|
|
|
with:
|
|
|
name: ${{ steps.package.outputs.package-name }}.zip
|
|
|
path: ci\build\${{ steps.package.outputs.package-name }}
|
|
|
# Upload to release
|
|
|
- name: Upload Release
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
uses: svenstaro/upload-release-action@v1-release
|
|
|
with:
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
file: ci\build\${{ steps.package.outputs.package-name }}.zip
|
|
|
asset_name: ${{ steps.package.outputs.package-name }}.zip
|
|
|
tag: ${{ github.ref }}
|
|
|
overwrite: true |