-
-
Notifications
You must be signed in to change notification settings - Fork 39
40 lines (31 loc) · 1.38 KB
/
CIBuild.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
name: CI Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-2022
steps:
- name: Clone Repo
uses: actions/checkout@v1
- name: Setup Visual Studio Command Prompt
uses: microsoft/setup-msbuild@v1.0.2
- name: Setup VSTest Path
uses: darenm/Setup-VSTest@v1
- name: Build
run: |
msbuild /restore /t:Build,Pack src/WinUIEx/WinUIEx.csproj /p:Configuration=Release
msbuild /restore /t:Build,Pack src\TestTools\WinUIEx.TestTools\WinUIEx.TestTools.csproj /p:Configuration=Release
msbuild /restore /t:Build src\TestTools\WinUIEx.TestTools.MSTest.CodeGenerator\WinUIEx.TestTools.MSTest.CodeGenerator.csproj /p:Configuration=Release
msbuild /restore /t:Build,Pack src\TestTools\WinUIEx.TestTools.MSTest\WinUIEx.TestTools.MSTest.csproj /p:Configuration=Release
# - name: Test
# run: |
# msbuild /restore /t:Build src\TestTools\WinUIUnitTests\WinUIUnitTests.csproj /p:Platform=x64 /p:Configuration=Release
# vstest.console.exe src\TestTools\WinUIUnitTests\bin\x64\Release\net5.0-windows10.0.19041.0\win10-x64\WinUIUnitTests.build.appxrecipe --logger:"console;verbosity=normal" /InIsolation
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: NuGet Packages
path: artifacts\NuGet\Release