File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 69
69
- uses : actions/checkout@v4
70
70
71
71
- name : Create Build Environment
72
- if : matrix.compiler.tool != 'MSVC'
72
+ if : matrix.compiler.name != 'MSVC'
73
73
shell : bash
74
74
run : choco install ${{matrix.package}} --version ${{matrix.compiler.ver}} --allow-downgrade -y && choco install ninja && cmake -E make_directory ${{runner.workspace}}/build
75
75
81
81
env :
82
82
CXX : ${{matrix.cxx}}
83
83
CC : ${{matrix.cc}}
84
- PARAMETERS : ${{ matrix.compiler.tool == 'MSVC' && format('-A x64 -T v{0}', matrix.compiler.ver) || format('-G "{0}"', matrix.generator) }}
84
+ PARAMETERS : ${{ matrix.compiler.name == 'MSVC' && format('-A x64 -T v{0}', matrix.compiler.ver) || format('-G "{0}"', matrix.generator) }}
85
85
run : cmake -B ${{runner.workspace}}/build -G "${{matrix.generator}}" ${{env.PARAMETERS}} -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_CXX_STANDARD=${{matrix.std}} -D_7BIT_DI_LIBRARY_TYPE=${{matrix.library_type}} -D_7BIT_DI_BUILD_ALL_TESTS=ON
86
86
87
87
- name : Build
You can’t perform that action at this time.
0 commit comments