Skip to content

Commit

Permalink
Only build llvm on Windows if debug=true
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Nov 25, 2024
1 parent 49b2cd3 commit 813ff99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ jobs:
- name: Build LLVM/Cling on Windows systems if the cache is invalid
if: ${{ runner.os == 'windows' && steps.cache.outputs.cache-hit != 'true' }}
if: ${{ (matrix.debug_build == true) && runner.os == 'windows' && steps.cache.outputs.cache-hit != 'true' }}
run: |
git clone --depth=1 -b release/${{ matrix.clang-runtime }}.x https://github.com/llvm/llvm-project.git
Expand Down

0 comments on commit 813ff99

Please sign in to comment.