Bump libass to 0.17.3 #93
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [ externalProject ] | |
pull_request: | |
branches: [ externalProject ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
VS_VERSION: 16 | |
SDK_VERSION: '10.0.18362.0' | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
arch: [win32, x64, arm] | |
platform: [-App, -Desktop] | |
exclude: | |
- arch: arm | |
platform: -Desktop | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Strawberry Perl | |
# Perl included with git does not work when building openssl | |
run: choco install -y StrawberryPerl nasm | |
- 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 |