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 bb1451c commit b23d691Copy full SHA for b23d691
.circleci/config.yml
@@ -54,16 +54,18 @@ jobs:
54
- run:
55
name: Pre-build (set up MSVC)
56
command: |
57
- Start-Process -FilePath "<< parameters.vspath >>\VC\Auxiliary\Build\vcvarsall.bat" -ArgumentList << parameters.arch >> -Wait -NoNewWindow
58
- Start-Process -FilePath dist.bat -ArgumentList gen -Wait
59
- & cmake . -G "NMake Makefiles"
+ "<< parameters.vspath >>\VC\Auxiliary\Build\vcvarsall.bat" << parameters.arch >>
+ dist.bat gen
+ cmake . -G "NMake Makefiles"
60
+ shell: cmd.exe
61
62
name: Build
- command: |
63
- & nmake
+ command: nmake
64
65
66
name: Test
67
command: ctest -V -LE json
68
69
70
workflows:
71
ubuntu-build:
0 commit comments