-
Notifications
You must be signed in to change notification settings - Fork 53
53 lines (46 loc) · 1.07 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# .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