File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 69
69
70
70
- name : Try Setup LLVM Environment
71
71
if : matrix.compiler.name == 'Clang'
72
- run : |
73
- echo "PATH=$(brew --prefix llvm@${{matrix.compiler.ver}})/bin:${PATH}" >> $GITHUB_ENV
72
+ run : echo "PATH=$(brew --prefix llvm@${{matrix.compiler.ver}})/bin:${PATH}" >> $GITHUB_ENV
74
73
75
74
- name : Configure
76
75
env :
Original file line number Diff line number Diff line change 96
96
run : choco install ${{matrix.package}} --version ${{matrix.compiler.ver}} --allow-downgrade -y && choco install ninja && cmake -E make_directory ${{runner.workspace}}/build
97
97
98
98
- name : Try Setup MinGW Environment
99
- run : " PATH=${{env.CHOCO_MINGW_BIN_DIR}};" +$env:path >> $GITHUB_ENV
99
+ if : matrix.compiler.name == 'MinGW'
100
+ shell : bash
101
+ run : echo "PATH=${{env.CHOCO_MINGW_BIN_DIR}};${PATH}" >> $GITHUB_ENV
100
102
101
103
- name : Configure
102
104
env :
You can’t perform that action at this time.
0 commit comments