We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b8af0 commit 0259b20Copy full SHA for 0259b20
1 file changed
.github/workflows/build-windows-runtime.yml
@@ -66,6 +66,7 @@ jobs:
66
- name: Build
67
run: |
68
dotnet build build\Stride.Runtime.slnf `
69
+ -bl:msbuild.binlog `
70
-p:StrideNativeBuildMode=Clang `
71
-nr:false `
72
-v:m -p:WarningLevel=0 `
@@ -74,3 +75,10 @@ jobs:
74
75
-p:StrideGraphicsApis=${{ github.event.inputs.graphics-api || inputs.graphics-api || 'Direct3D11' }} `
76
-p:StrideSkipUnitTests=true `
77
-p:StrideSkipAutoPack=true
78
+ - name: Upload binlog
79
+ if: always()
80
+ uses: actions/upload-artifact@v4
81
+ with:
82
+ name: binlog-windows-runtime-${{ github.event.inputs.build-type || inputs.build-type || 'Debug' }}-${{ github.event.inputs.graphics-api || inputs.graphics-api || 'Direct3D11' }}
83
+ path: msbuild.binlog
84
+ if-no-files-found: ignore
0 commit comments