Fix llvm-config --version #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo Check | |
on: ["push", "pull_request"] | |
jobs: | |
check: | |
strategy: | |
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 | |
# macos does not support LLVM 17. | |
runs-on: ${{ matrix.os }} | |
env: | |
working-directory: ./wright | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache LLVM installation | |
id: cache-llvm | |
uses: actions/cache@v3 | |
with: | |
path: ${{ matrix.llvm-dir }} | |
key: llvm-17 | |
- name: Install LLVM | |
uses: KyleMayes/install-llvm-action@v1 | |
with: | |
version: "17" | |
directory: ${{ matrix.llvm-dir }} | |
cached: ${{ steps.cache-llvm.outputs.cache-hit }} | |
- name: Check LLVM version (Windows) | |
run: ${{ env.LLVM_PATH }}\bin\llvm-config.exe --version | |
if: ${{ matrix.os == 'windows-latest' }} | |
- name: Check LLVM version (Ubuntu) | |
run: llvm-config --version | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Check rust code | |
run: cargo check | |
working-directory: ${{env.working-directory}} |