File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -118,15 +118,16 @@ jobs:
118
118
./scripts/ci/vs/install_bleeding.sh
119
119
- name : Setup MSBuild
120
120
uses : microsoft/setup-msbuild@v2
121
- - name : Build DEBUG emptyExample
121
+ - name : Build DEBUG and RELEASE emptyExample
122
122
working-directory : ${{env.GITHUB_WORKSPACE}}
123
- run :
123
+ run : |
124
124
msbuild examples/templates/emptyExample/emptyExample.vcxproj /p:configuration=debug /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
125
- # - name: Build DEBUG allAddonsExample
126
- # working-directory: ${{env.GITHUB_WORKSPACE}}
127
- # run:
128
- # msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=debug /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
129
-
125
+ msbuild examples/templates/emptyExample/emptyExample.vcxproj /p:configuration=release /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
126
+ - name : Build DEBUG and RELEASE allAddonsExample
127
+ working-directory : ${{env.GITHUB_WORKSPACE}}
128
+ run : |
129
+ msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=debug /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
130
+ msbuild examples/templates/allAddonsExample/allAddonsExample.vcxproj /p:configuration=release /p:platform=${{ matrix.platform }} /p:PlatformToolset=v143
130
131
131
132
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
132
133
You can’t perform that action at this time.
0 commit comments