[github] Updated deprecated workflows actions #77
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: 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 | ||
path: | | ||
package/*-${{ matrix.arch }}-${{ matrix.platform }}.7z | ||
package/hashes-*-${{ matrix.arch }}-${{ matrix.platform }}.txt |