-
Notifications
You must be signed in to change notification settings - Fork 8
40 lines (30 loc) · 1.03 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
name: Build Test Suite
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
name: Checkout Code
- name: Setup MSBuild Path
uses: microsoft/[email protected]
with:
vs-version: '[16.0,17.0)'
- name: Setup NuGet
uses: nuget/setup-nuget@v1
- name: Restore NuGet Packages
run: nuget restore ccx_testsuite.sln
- name: Build
run: msbuild ccx_testsuite.sln /t:ccx_testsuite /p:Platform="x86" /p:Configuration=Release
- name: Prepare artifact upload
run: mkdir ./artifact; cp CCExtractorTester.exe ./artifact/CCExtractorTester.exe; cp testGenerations.dll ./artifact/testGenerations.dll; cp CommandLine.dll ./artifact/CommandLine.dll
working-directory: CCExtractorTester\bin\Release\
- name: Upload Artifact
uses: actions/[email protected]
with:
name: CCExtractorTester suite
path: CCExtractorTester\bin\Release\artifact