try fix Win CI #736
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
name: CI-Windows | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled' | |
required: false | |
default: false | |
env: | |
VNOTE_VER: 3.17.0 | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: windows-2019 | |
timeout-minutes: 120 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- { | |
name: "Build On Win64 Qt 5.15", | |
arch: win64_msvc2019_64, | |
platform: x64, | |
qt: 5.15.2, | |
qt_modules: qtwebengine, | |
qt_tools: tools_opensslv3_x64 | |
} | |
- { | |
name: "Build On Win64 Qt 6.5", | |
arch: win64_msvc2019_64, | |
platform: x64, | |
qt: 6.5.2, | |
qt_modules: "qtwebengine qtwebchannel qtpositioning qtpdf qtimageformats qt5compat", | |
qt_tools: tools_opensslv3_x64 | |
} | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE. | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Init Submodules | |
shell: bash | |
run: | | |
auth_header="$(git config --local --get http.https://github.com/.extraheader)" | |
git submodule sync --recursive | |
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 | |
- name: Cache Qt | |
id: cache-qt | |
uses: actions/cache@v1 # not v2! | |
with: | |
path: ../Qt | |
key: ${{runner.os}}-${{matrix.config.arch}}-QtCache-${{matrix.config.qt}} | |
- name: Install Qt Official Build | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{matrix.config.qt}} | |
target: desktop | |
arch: ${{matrix.config.arch}} | |
modules: ${{matrix.config.qt_modules}} | |
tools: ${{matrix.config.qt_tools}} | |
cache: 'true' | |
- name: Create Build Dir | |
shell: bash | |
run: mkdir build | |
working-directory: ${{runner.workspace}} | |
- name: Clone OpenSSL on 5.15 | |
shell: bash | |
if: ${{startsWith(matrix.config.qt, '5.15')}} | |
run: | | |
git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git --depth=1 | |
working-directory: ${{runner.workspace}}/build | |
# Enable tmate debugging of manually-triggered workflows if the input option was provided | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
- name: Configure and Build Project | |
shell: cmd | |
run: | | |
tree | |
qmake --version | |
cmake --version | |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{matrix.config.platform}} | |
cmake -GNinja -DCMAKE_BUILD_TYPE=Release %GITHUB_WORKSPACE% | |
cmake --build . | |
cmake --build . --target=deploy | |
cmake --build . --target=pack | |
working-directory: ${{runner.workspace}}/build |