-
Notifications
You must be signed in to change notification settings - Fork 11
220 lines (185 loc) · 7.73 KB
/
msbuild.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
name: Visual Studio Extension for Emscripten
on:
[ push, pull_request ]
jobs:
build:
strategy:
matrix:
config:
- name: vs2022
runs-on: windows-2022
config-name: Release
msbuild-path: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\MSBuild\\Current\\bin"
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }}
runs-on: ${{ matrix.config.runs-on }}
env:
Solution_Name: Emscripten.sln
MSBuild_Path: ${{ matrix.config.msbuild-path }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Nuget
uses: nuget/setup-nuget@v1
with:
nuget-version: '5.x'
- name: Restore Nuget package
run: nuget restore $env:Solution_Name
- name: Build the application
run: |
Set-Item Env:Path "$env:MSBuild_Path;$env:Path"
msbuild $env:Solution_Name /p:Configuration="${{ matrix.config.config-name }}"
- name: Save BuildSystem Bundles
uses: actions/upload-artifact@v3
with:
name: VSExt-Build.Definition.${{ matrix.config.name }}
path: .\Emscripten.BuildSystem\bin\${{ matrix.config.config-name }}\*.vsix
- name: Save VSCode Debugger Bundles
uses: actions/upload-artifact@v3
with:
name: VSExt-Emscripten.VSCodeDwarfDebug.${{ matrix.config.name }}
path: .\Emscripten.Debugger.VSCodeDwarfDebug\bin\${{ matrix.config.config-name }}\*.vsix
- name: Save ExtensionPack Bundles
uses: actions/upload-artifact@v3
with:
name: VSExt-Emscripten.ExtensionPack.${{ matrix.config.name }}
path: .\Emscripten.ExtensionPack\bin\${{ matrix.config.config-name }}\*.vsix
test:
needs: build
runs-on: windows-2022
env:
MSBuild_path: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\MSBuild\\Current\\bin"
VSIXInstaller_Path: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Common7\\IDE"
DevEnv_Path: "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Common7\\IDE\\devenv.exe"
WinAppDriver_Path: "C:\\Program Files (x86)\\Windows Application Driver\\WinAppDriver.exe"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Emscripten
working-directory: Test
run: |
curl -L https://github.com/nokotan/EmscriptenInstaller/releases/download/v0.1.2/EmscriptenOffline.exe -o Emscripten.exe
& ".\Emscripten.exe" /SILENT /SUPPRESSMSGBOXES
Wait-Process -Name "Emscripten"
$env:EMSDK = [System.Environment]::GetEnvironmentVariable("EMSDK","User")
echo "EMSDK=$env:EMSDK" >> $env:GITHUB_ENV
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
echo $env:Path >> $Env:GITHUB_PATH
- name: Restore Bundles
uses: actions/download-artifact@v3
with:
name: VSExt-Build.Definition.vs2022
path: Test
- name: Install VSIX
working-directory: Test
run: |
Set-Item Env:Path "$env:VSIXInstaller_Path;$env:Path"
VSIXInstaller /quiet /admin Emscripten.BuildSystem.vsix
Wait-Process -Name "VSIXInstaller"
- name: Static Linking Test
working-directory: Test/SampleProjects/StaticLinking
run: |
Set-Item Env:Path "$env:MSBuild_Path;$env:Path"
msbuild StaticLinking.sln /p:Configuration="Release"
- name: MultiProcessBuild Test
working-directory: Test/SampleProjects/MultiProcessBuild
run: |
Set-Item Env:Path "$env:MSBuild_Path;$env:Path"
msbuild MultiProcessBuild.sln /p:Configuration="Release"
- name: TLog Generation Test
working-directory: Test/SampleProjects/PreCompiledHeader
run: |
Set-Item Env:Path "$env:MSBuild_Path;$env:Path"
msbuild PreCompiledHeader.sln /p:Configuration="Release"
- name: TLog Generation Test
working-directory: Test/SampleProjects/StaticLinking
run: |
Set-Item Env:Path "$env:MSBuild_Path;$env:Path"
emcc --clear-cache
msbuild StaticLinking.sln /p:Configuration="Release"
build-dockerimage:
runs-on: windows-latest
continue-on-error: true
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Restore Bundles
uses: actions/download-artifact@v3
with:
name: VSExt-Build.Definition.vs2022
path: Container/
- name: Build Image (Latest)
if: ${{ !contains(github.ref, 'tags/') }}
working-directory: Container
run: |
docker build . --file Dockerfile --tag nokotan/emscripten-windows-visual-studio:latest
docker image push nokotan/emscripten-windows-visual-studio:latest
- name: Build Image (Tagged)
if: ${{ contains(github.ref, 'tags/') }}
working-directory: Container
run: |
docker build . --file Dockerfile --tag nokotan/emscripten-windows-visual-studio:${{ github.ref_name }}
docker image push nokotan/emscripten-windows-visual-studio:${{ github.ref_name }}
deploy:
if: ${{ contains(github.ref, 'tags/v') }}
needs: test
runs-on: ubuntu-latest
steps:
- name: Restore Bundles
uses: actions/download-artifact@v3
with:
name: VSExt-Build.Definition.vs2022
path: .
- name: Restore Bundles
uses: actions/download-artifact@v3
with:
name: VSExt-Emscripten.VSCodeDwarfDebug.vs2022
path: .
- name: Restore Bundles
uses: actions/download-artifact@v3
with:
name: VSExt-Emscripten.ExtensionPack.vs2022
path: .
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
- name: Upload Release Asset
id: upload-build-support-package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Emscripten.BuildSystem.vsix
asset_name: Emscripten.BuildSystem.vsix
asset_content_type: application/vsix
- name: Upload Release Asset
id: upload-vscode-debugger-package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Emscripten.Debugger.VSCodeDwarfDebug.vsix
asset_name: Emscripten.Debugger.VSCodeDwarfDebug.vsix
asset_content_type: application/vsix
- name: Upload Release Asset
id: upload-extension-pack-package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: Emscripten.ExtensionPack.vsix
asset_name: Emscripten.ExtensionPack.vsix
asset_content_type: application/vsix