Skip to content

Commit

Permalink
Using start-process
Browse files Browse the repository at this point in the history
  • Loading branch information
ktakashi committed Dec 6, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent b8703a1 commit 10f5b9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -54,12 +54,12 @@ jobs:
- run:
name: Setup MSVC
command: |
& "<< parameters.vspath >>\VC\Auxiliary\Build\vcvarsall.bat" << parameters.arch >>
Start-Process -FilePath "<< parameters.vspath >>\VC\Auxiliary\Build\vcvarsall.bat" -ArgumentList << parameters.arch >> -Wait -NoNewWindow
- run:
name: Pre-build
command: |
dist.bat gen
cmake . -G "NMake Makefiles"
Start-Process -FilePath dist.bat -ArgumentList gen -Wait
& cmake . -G "NMake Makefiles"
- run:
name: Build
command: |

0 comments on commit 10f5b9b

Please sign in to comment.