You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This runs the same command as launch.json for Codespaces in VS Code to build all samples. This also runs the job on linux compared to our other jobs that run on Windows.
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -239,3 +239,28 @@ jobs:
239
239
name: Test results
240
240
path: './TestResults/*.trx'
241
241
reporter: dotnet-trx
242
+
243
+
wasm-linux:
244
+
runs-on: ubuntu-latest
245
+
246
+
steps:
247
+
- name: Install .NET 6 SDK
248
+
uses: actions/setup-dotnet@v1
249
+
with:
250
+
dotnet-version: '6.0.201'
251
+
252
+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
253
+
- name: Checkout Repository
254
+
uses: actions/checkout@v2
255
+
256
+
- name: Generate solution
257
+
shell: pwsh
258
+
run: ./GenerateAllSolution.ps1
259
+
260
+
# Issue with Comment Links currently, see: https://github.com/mrlacey/CommentLinks/issues/38
261
+
# See launch.json configuration file for analogous command we're emulating here to build LINK: ../../.vscode/launch.json:CommunityToolkit.Labs.Wasm.csproj
0 commit comments