Skip to content

Commit ab01614

Browse files
committed
update ci
1 parent a50e48a commit ab01614

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/MacOs.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ jobs:
6969
7070
- name: Try Setup LLVM Environment
7171
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
7473

7574
- name: Configure
7675
env:

.github/workflows/Windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ jobs:
9696
run: choco install ${{matrix.package}} --version ${{matrix.compiler.ver}} --allow-downgrade -y && choco install ninja && cmake -E make_directory ${{runner.workspace}}/build
9797

9898
- 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
100102

101103
- name: Configure
102104
env:

0 commit comments

Comments
 (0)