-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (63 loc) · 1.65 KB
/
win-ci.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Build executables
on:
push:
branches:
- main
- master
- staging
paths:
- '**/*cs'
- '**/*csproj'
- '**/*sln'
- '**/*xaml'
- '**/*resx'
- '**/*config'
- '**/win-ci.yml'
- '.gitignore'
# pull_request:
# branches:
# - main
# - master
# - staging
# paths:
# - '**/*cs'
# - '**/*csproj'
# - '**/*sln'
# - '**/*xaml'
# - '**/*resx'
# - '**/*config'
# - '**/win-ci.yml'
# - '.gitignore'
workflow_dispatch:
jobs:
build_exe:
runs-on: 'windows-latest'
name: Building Dipol-UF.exe & Host.exe
defaults:
run:
shell: pwsh
env:
GITHUB_NUGET_RO: ${{ secrets.NUGET_RO }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/[email protected]
- name: Restore Host
run: |
MSBuild.exe .\src\Host\Host.csproj -t:restore
- name: Build Host x86
run: |
MSBuild.exe .\src\Host\Host.csproj -p:Configuration=Release -p:Platform=x86
- name: Build Host x64
run: |
MSBuild.exe .\src\Host\Host.csproj -p:Configuration=Release -p:Platform=x64
- name: Restore Dipol-UF
run: |
MSBuild.exe .\src\Dipol-UF\Dipol-UF.csproj -t:restore
- name: Build Dipol-UF x86
run: |
MSBuild.exe .\src\Dipol-UF\Dipol-UF.csproj -p:Configuration=Release -p:Platform=x86
- name: Build Dipol-UF x64
run: |
MSBuild.exe .\src\Dipol-UF\Dipol-UF.csproj -p:Configuration=Release -p:Platform=x64