Skip to content

Commit

Permalink
Just allow cmake to choose its own build tool actually
Browse files Browse the repository at this point in the history
  • Loading branch information
vcfxb committed Mar 17, 2024
1 parent ae43e55 commit 4dec682
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/cargo-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ jobs:
ref: llvmorg-${{ matrix.llvm-version }}
path: ./llvm-src

- name: Install Ninja on Ubuntu
if: ${{ matrix.os == 'ubuntu-latest' }}
run: apt update && apt install -y ninja-build

# Cached LLVM installation.
- id: cache-llvm-install
name: Cache LLVM ${{ matrix.llvm-version }} build/install output
Expand All @@ -53,7 +49,7 @@ jobs:
name: Build LLVM ${{ matrix.llvm-version }}
working-directory: ./llvm-src
run: |
cmake -S llvm -B build -G Ninja -DCMAKE_INSTALL_PREFIX=../llvm-install -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_LINKER=lld
cmake -S llvm -B build -DCMAKE_INSTALL_PREFIX=../llvm-install -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_LINKER=lld
Expand Down

0 comments on commit 4dec682

Please sign in to comment.