Skip to content

Commit

Permalink
no named llvm target, just build everything
Browse files Browse the repository at this point in the history
  • Loading branch information
vcfxb committed Mar 17, 2024
1 parent d650b39 commit e474062
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cargo-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
working-directory: ./llvm-src
# Use lld if on windows. It's not available otherwise it seems.
run: |
cmake -S llvm -B build -DCMAKE_INSTALL_PREFIX=../llvm-install -DCMAKE_BUILD_TYPE=Release ${{ matrix.os == 'windows-latest' && '-DLLVM_USE_LINKER=lld' }}
cmake -S llvm -B build -DCMAKE_INSTALL_PREFIX=../llvm-install -DCMAKE_BUILD_TYPE=Release ${{ matrix.os == 'windows-latest' && '-DLLVM_USE_LINKER=lld' || ''}}
# Cached LLVM installation.
- id: cache-llvm-install
Expand All @@ -64,4 +64,4 @@ jobs:
name: Install LLVM ${{ matrix.llvm-version }}
working-directory: ./llvm-src
run: |
cmake --build build --target llvm
cmake --build build

0 comments on commit e474062

Please sign in to comment.