Skip to content

Commit

Permalink
Suppress MSVC tool chatter
Browse files Browse the repository at this point in the history
  • Loading branch information
CaseyCarter committed Sep 4, 2024
1 parent 286231b commit 58add69
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/range-v3-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
COMMAND "${{ matrix.config.environment_script }}" && set
OUTPUT_FILE environment_script_output.txt
)
set(cxx_flags "/permissive- /EHsc")
set(cxx_flags "/nologo /permissive- /EHsc")
file(STRINGS environment_script_output.txt output_lines)
foreach(line IN LISTS output_lines)
if (line MATCHES "^([a-zA-Z0-9_-]+)=(.*)$")
Expand Down Expand Up @@ -157,6 +157,10 @@ jobs:
set(cxx_concepts OFF)
endif()
if ("${{ runner.os }}" STREQUAL "Windows")
set(link_flags "${link_flags} /NOLOGO")
endif()
execute_process(
COMMAND ${{ steps.cmake_and_ninja.outputs.cmake_dir }}/cmake
-S .
Expand Down

0 comments on commit 58add69

Please sign in to comment.