feat: Update to libclang 20 and support C Blocks extension #24
This file contains hidden or 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: Testing LLVM on windows | |
| on: | |
| push: | |
| branches: ["testing", "main"] | |
| paths: | |
| - ".github/workflows/testWindows.yml" | |
| - "build/**" | |
| - "lib/**" | |
| - "test/**" | |
| pull_request: | |
| branches: ["testing", "main"] | |
| paths: | |
| - ".github/workflows/testWindows.yml" | |
| - "build/**" | |
| - "lib/**" | |
| - "test/**" | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: 2.4.1 | |
| - name: Install LLVM | |
| run: | | |
| choco install -y --allow-downgrade --version 20.1.7 llvm | |
| - name: test | |
| run: | | |
| $Env:LIBCLANG_PATH="C:\Program Files\LLVM\bin" | |
| $Env:TEST_DIR=$Env:LIBCLANG_PATH | |
| $Env:TEST_PATH="$Env:LIBCLANG_PATH\libclang.dll" | |
| deno task test |