Update zh-TW #257
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: Windows Builds | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'LICENSE' | |
- 'Assets/**' | |
- 'Docs/**' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'LICENSE' | |
- 'Assets/**' | |
- 'Docs/**' | |
workflow_dispatch: | |
env: | |
PLATFORM_NAME: Win32 | |
BUILD_TYPE: RelWithDebInfo | |
UPLOAD_ARTIFACT: true | |
CACHE_DEPS: false | |
FIXED_CMAKE_VERSION: 3.21.4 | |
jobs: | |
Build: | |
runs-on: windows-2019 | |
defaults: | |
run: | |
shell: cmd | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
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/SpriteOvO/AirPodsDesktop-Deps/git/refs/heads/main | |
type DepsRef.json | |
- name: Dependencies cache | |
id: cache-deps | |
if: env.CACHE_DEPS == 'true' | |
uses: actions/cache@v2 | |
with: | |
path: Build/AirPodsDesktop-Deps | |
key: ${{ hashFiles('Build/DepsRef.json') }} | |
- 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/SpriteOvO/AirPodsDesktop-Deps.git | |
dir AirPodsDesktop-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: Generate project and build | |
working-directory: Build | |
run: | | |
mkdir ${{ env.BUILD_TYPE }} && cd ${{ env.BUILD_TYPE }} | |
cmake -G "Visual Studio 16 2019" ^ | |
-A ${{ env.PLATFORM_NAME }} ^ | |
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} ^ | |
-DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake ^ | |
-DCMAKE_PREFIX_PATH=${{ github.workspace }}/Build/AirPodsDesktop-Deps/Qt/5.15.2/msvc2019 ^ | |
-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\win32\NSIS | |
move AirPodsDesktop-*-win32 AirPodsDesktop-${{ github.sha }}-win32 | |
- name: Upload artifact - Installer | |
uses: actions/upload-artifact@v2 | |
if: env.UPLOAD_ARTIFACT == 'true' | |
with: | |
name: AirPodsDesktop-${{ github.sha }}-Installer | |
path: Build\${{ env.BUILD_TYPE }}\Installer\AirPodsDesktop-*-win32.exe | |
retention-days: 90 | |
- name: Upload artifact - Portable | |
uses: actions/upload-artifact@v2 | |
if: env.UPLOAD_ARTIFACT == 'true' | |
with: | |
name: AirPodsDesktop-${{ github.sha }}-Portable | |
path: Build\${{ env.BUILD_TYPE }}\Installer\_CPack_Packages\win32\NSIS\AirPodsDesktop-${{ github.sha }}-win32\AirPodsDesktop | |
retention-days: 90 |