mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-07 21:07:23 +08:00
* SYNERGY-786 The system resets server name * Update ChangeLog * Update job-test-windows.yml * Update job-test-windows.yml * Update codeql-analysis.yml * Update codeql-analysis.yml
70 lines
2.0 KiB
YAML
70 lines
2.0 KiB
YAML
name: Windows
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build-arch64:
|
|
runs-on: windows-2019
|
|
|
|
env:
|
|
GIT_COMMIT: ${{ github.sha }}
|
|
BONJOUR_BASE_DIR: ${{ github.workspace }}\deps\bonjour
|
|
QT_BASE_DIR: ${{ github.workspace }}\deps\Qt
|
|
QT_VERSION: 5.12.6
|
|
QT_BASE_URL: http://qt.mirror.constant.com/
|
|
QT_LIB_DIR: ${{ github.workspace }}\deps\Qt\5.12.6
|
|
OPENSSL_LIB_DIR: ${{ github.workspace }}\ext\openssl\windows
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Cache Qt
|
|
id: cache-qt
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ${{ env.QT_BASE_DIR }}
|
|
key: ${{ runner.os }}-Qt_${{ env.QT_VERSION }}
|
|
|
|
- name: Install Qt
|
|
if: steps.cache-qt.outputs.cache-hit != 'true'
|
|
run: |
|
|
pip install aqtinstall
|
|
python -m aqt install --outputdir $env:QT_BASE_DIR --base $env:QT_BASE_URL $env:QT_VERSION windows desktop win64_msvc2017_64
|
|
cd $env:QT_LIB_DIR\msvc2017_64
|
|
dir
|
|
|
|
- name: Cache Bonjour
|
|
id: cache-bonjour
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ${{ env.BONJOUR_BASE_DIR }}
|
|
key: ${{ runner.os }}-Bonjour
|
|
|
|
- name: Install Bonjour SDK
|
|
if: steps.cache-bonjour.outputs.cache-hit != 'true'
|
|
run: |
|
|
New-Item -Force -ItemType Directory -Path "$env:BONJOUR_BASE_DIR"
|
|
$client = new-object System.Net.WebClient
|
|
$client.DownloadFile("https://binaries.symless.com/bonjour/BonjourSDK.zip",".\bonjoursdk.zip")
|
|
[System.IO.Compression.ZipFile]::ExtractToDirectory(".\bonjoursdk.zip", "$env:BONJOUR_BASE_DIR")
|
|
|
|
- name: Add msbuild to PATH
|
|
uses: microsoft/setup-msbuild@v1.0.2
|
|
|
|
- name: Build
|
|
env:
|
|
CMAKE_PREFIX_PATH: "${{ env.QT_LIB_DIR }}\\msvc2017_64\\;${{ env.OPENSSL_LIB_DIR }}\\x64"
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
. ./version
|
|
msbuild synergy-core.sln /p:Configuration=Release
|
|
|
|
- name: Run unit test
|
|
run: .\build\bin\Release\unittests.exe
|