Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
update zero_check custyom build step
Browse files Browse the repository at this point in the history
  • Loading branch information
alehandru committed Sep 7, 2023
1 parent 4ed570b commit 71aef5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,6 @@ jobs:
- name: Install NASM
run: |
choco install -y nasm
dir "C:/Program Files/NASM"
- name: Install NASM
shell: pwsh
run: |
mkdir -p ${{ github.workspace }}\temp\nasm
Invoke-WebRequest "https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/win64/nasm-2.16.01-win64.zip" -OutFile "${{ github.workspace }}\temp\nasm.zip"
Expand-Archive -LiteralPath '${{ github.workspace }}\temp\nasm.zip' -DestinationPath 'C:/nasm'
ls 'C:/nasm'
- name: CMake version installed with Visual Studio
shell: pwsh
Expand Down
8 changes: 4 additions & 4 deletions build_windows_64/ZERO_CHECK.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
<UseUtf8Encoding>Always</UseUtf8Encoding>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Checking Build System</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir)../grpc -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir) -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
Expand All @@ -138,7 +138,7 @@ if %errorlevel% neq 0 goto :VCEnd</Command>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Checking Build System</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir)../grpc -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir) -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
Expand All @@ -151,7 +151,7 @@ if %errorlevel% neq 0 goto :VCEnd</Command>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Checking Build System</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">setlocal
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir)../grpc -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir) -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
Expand All @@ -164,7 +164,7 @@ if %errorlevel% neq 0 goto :VCEnd</Command>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkObjects>
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Checking Build System</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">setlocal
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir)../grpc -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
"$(VCIDEInstallDir)..\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -S$(SolutionDir) -B$(SolutionDir) --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file $(SolutionDir)/grpc.sln
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
Expand Down

0 comments on commit 71aef5c

Please sign in to comment.