Skip to content

Commit

Permalink
Fix llvm-config command
Browse files Browse the repository at this point in the history
  • Loading branch information
vcfxb committed Mar 17, 2024
1 parent 574bf13 commit 5ac15ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cargo-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
matrix:
include:
- os: windows-latest
# https://stackoverflow.com/questions/77743610/inkwell-llvm-sys-not-able-to-compile-on-windows
llvm-dir: C:/LLVM
- os: ubuntu-latest
llvm-dir: ./llvm
Expand All @@ -31,7 +32,7 @@ jobs:
directory: ${{ matrix.llvm_dir }}
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
- name: Check LLVM version
run: llvm-config --version
run: ${{ env.LLVM_PATH }}/bin/llvm-config.exe --version
- name: Check rust code
run: cargo check
working-directory: ${{env.working-directory}}

0 comments on commit 5ac15ec

Please sign in to comment.