File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change 3535 steps :
3636 - uses : actions/checkout@v3
3737
38- - name : Configure
39- shell : cmake -P {0}
40- run : |
41- set(ENV{CC} ${{ matrix.config.cc }})
42- set(ENV{CXX} ${{ matrix.config.cxx }})
43-
44- if ("${{ runner.os }}" STREQUAL "Windows" AND NOT "x${{ matrix.config.environment_script }}" STREQUAL "x")
45- execute_process(
46- COMMAND "${{ matrix.config.environment_script }}" && set
47- OUTPUT_FILE environment_script_output.txt
48- )
49- file(STRINGS environment_script_output.txt output_lines)
50- foreach(line IN LISTS output_lines)
51- if (line MATCHES "^([a-zA-Z0-9_-]+)=(.*)$")
52- set(ENV{${CMAKE_MATCH_1}} "${CMAKE_MATCH_2}")
53- endif()
54- endforeach()
55- endif()
56-
5738 - name : Create CMake cache
5839 shell : bash
5940 run : |
You can’t perform that action at this time.
0 commit comments