Bump Python to 3.14.0 #130
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| branches: [ externalProject ] | |
| pull_request: | |
| branches: [ externalProject ] | |
| env: | |
| # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
| VS_VERSION: 17 | |
| SDK_VERSION: '10.0.22621.0' | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| arch: [win32, x64, arm64] | |
| platform: [-App, -Desktop] | |
| exclude: | |
| - arch: arm64 | |
| platform: -App | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Strawberry Perl | |
| # Perl included with git does not work when building openssl | |
| run: choco install -y StrawberryPerl | |
| - name: Install nasm and add to path | |
| # required to build OpenSSL with asm option enabled | |
| run: | | |
| choco install nasm ${{ matrix.platform.arch == 'win32' && '--x86' || '' }} | |
| "C:\Program Files${{ matrix.platform.arch == 'win32' && ' (x86)' || '' }}\NASM" | Out-File -FilePath "$env:GITHUB_PATH" -Append | |
| - name: Install CMake v3.28.3 | |
| # libbluray fails to build with CMake 3.29.0 | |
| run: choco install -y CMake --version 3.28.3 --force | |
| - name: Build | |
| # Build your program with the given configuration | |
| run: .\DoRelease.ps1 -Platforms ${{ matrix.arch }} ${{ matrix.platform }} -VsVersion ${{ env.VS_VERSION }} -SdkVersion "${{ env.SDK_VERSION }}" | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Kodi dependencies ${{ matrix.arch }}${{ matrix.platform }} | |
| path: | | |
| package/*.7z | |
| package/hashes-*.txt |