forked from SpriteOvO/AirPodsDesktop
-
Notifications
You must be signed in to change notification settings - Fork 1
134 lines (115 loc) · 4.55 KB
/
windows.yml
File metadata and controls
134 lines (115 loc) · 4.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: Windows Builds
on:
push:
paths-ignore:
- '**.md'
- 'LICENSE'
- 'Assets/**'
- 'Docs/**'
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- 'Assets/**'
- 'Docs/**'
workflow_dispatch:
jobs:
Build:
runs-on: windows-2022
strategy:
matrix:
platform: [Win32, x64]
fail-fast: false
env:
PLATFORM_NAME: ${{ matrix.platform }}
BUILD_TYPE: RelWithDebInfo
UPLOAD_ARTIFACT: true
CACHE_DEPS: true
FIXED_CMAKE_VERSION: 3.21.4
TRIPLET: ${{ matrix.platform == 'Win32' && 'x86-windows' || 'x64-windows' }}
QT_DIR: ${{ matrix.platform == 'Win32' && 'msvc2019' || 'msvc2019_64' }}
NSIS_ARCH: ${{ matrix.platform == 'Win32' && 'win32' || 'win64' }}
defaults:
run:
shell: cmd
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Prepare build directory
run: mkdir Build
- name: Generate dependencies cache key
if: env.CACHE_DEPS == 'true'
run: |
curl -o Build\DepsRef.json https://api.github.com/repos/YimingZhanshen/AirPodsWindows-Deps/git/refs/heads/main
type Build\DepsRef.json
- name: Dependencies cache
id: cache-deps
if: env.CACHE_DEPS == 'true'
uses: actions/cache@v4
with:
path: Build/AirPodsWindows-Deps
key: ${{ hashFiles('Build/DepsRef.json') }}-${{ matrix.platform }}
- name: Clone dependencies
if: env.CACHE_DEPS != 'true' || steps.cache-deps.outputs.cache-hit != 'true'
working-directory: Build
run: |
git clone --recursive https://github.com/YimingZhanshen/AirPodsWindows-Deps.git
dir AirPodsWindows-Deps
- name: Print CMake version
run: cmake --version
- name: Use a fixed version of CMake
if: env.FIXED_CMAKE_VERSION != ''
run: |
choco install cmake.install --version ${{ env.FIXED_CMAKE_VERSION }} --installargs 'ADD_CMAKE_TO_PATH=System' --force
cmake --version
- name: Clone and bootstrap vcpkg
working-directory: Build
run: |
git clone --recursive https://github.com/microsoft/vcpkg.git
.\vcpkg\bootstrap-vcpkg.bat -disableMetrics
- name: Install vcpkg dependencies
working-directory: Build
run: |
ren ..\vcpkg.json vcpkg.json.bak
.\vcpkg\vcpkg install magic-enum:${{ env.TRIPLET }} cxxopts:${{ env.TRIPLET }} nlohmann-json:${{ env.TRIPLET }} boost-pfr:${{ env.TRIPLET }} boost-stacktrace:${{ env.TRIPLET }}
ren ..\vcpkg.json.bak vcpkg.json
- name: Generate project and build
working-directory: Build
run: |
mkdir ${{ env.BUILD_TYPE }} && cd ${{ env.BUILD_TYPE }}
cmake -G "Visual Studio 17 2022" ^
-A ${{ env.PLATFORM_NAME }} ^
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} ^
-DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake ^
-DVCPKG_MANIFEST_MODE=OFF ^
-DVCPKG_TARGET_TRIPLET=${{ env.TRIPLET }} ^
-DCMAKE_PREFIX_PATH=${{ github.workspace }}/Build/AirPodsWindows-Deps/Qt/5.15.2/${{ env.QT_DIR }} ^
-DAPD_GENERATE_INSTALLER=ON ^
-DAPD_BUILD_GIT_HASH=${{ github.sha }} ^
../../
cmake --build . ^
--config ${{ env.BUILD_TYPE }}
dir /s Binary
dir /s Installer
- name: Prepare artifacts
if: env.UPLOAD_ARTIFACT == 'true'
working-directory: Build\${{ env.BUILD_TYPE }}\Installer
run: |
cd _CPack_Packages\${{ env.NSIS_ARCH }}\NSIS
move AirPodsWindows-*-${{ env.NSIS_ARCH }} AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}
- name: Upload artifact - Installer
uses: actions/upload-artifact@v4
if: env.UPLOAD_ARTIFACT == 'true'
with:
name: AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}-Installer
path: Build\${{ env.BUILD_TYPE }}\Installer\AirPodsWindows-*-${{ env.NSIS_ARCH }}.exe
retention-days: 90
- name: Upload artifact - Portable
uses: actions/upload-artifact@v4
if: env.UPLOAD_ARTIFACT == 'true'
with:
name: AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}-Portable
path: Build\${{ env.BUILD_TYPE }}\Installer\_CPack_Packages\${{ env.NSIS_ARCH }}\NSIS\AirPodsWindows-${{ github.sha }}-${{ matrix.platform }}\AirPodsWindows
retention-days: 90