Merge pull request #364 from ffmpeginteropx/winui-build #9
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
# .github/workflows/build.yml | |
name: CI Builds | |
on: | |
push: | |
branches: | |
- master | |
- winui-build | |
pull_request: | |
branches: | |
- master | |
- winui-build | |
jobs: | |
build_uwp: | |
name: Build-FFmpegInteropX UWP | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Create Output Folder | |
run: | | |
mkdir Output | |
mkdir Output\NuGet | |
- name: Run Build Script | |
shell: powershell | |
run: | | |
./Build-FFmpegInteropX.ps1 -Platforms x64 | |
build_desktop: | |
name: Build-FFmpegInteropX Desktop | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Create Output Folder | |
run: | | |
mkdir Output | |
mkdir Output\NuGet | |
- name: Run Build Script | |
shell: powershell | |
run: | | |
./Build-FFmpegInteropX.ps1 -WindowsTarget Desktop -Platforms x64 |