Skip to content

Commit

Permalink
~~~
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed Oct 27, 2023
1 parent 8ad2649 commit d0f89ef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,26 +103,26 @@ jobs:
continue-on-error: true
run: |
ls "${{ runner.temp }}/llvm/bin"
${{ env.LLVM_PATH }}\bin\llvm-config --libdir
${{ env.LLVM_PATH }}\\bin\\llvm-config --libdir
- name: "Debug: llvm-config"
continue-on-error: true
shell: powershell
run: ${{ env.LLVM_PATH }}\bin\llvm-config --libdir
run: ${{ env.LLVM_PATH }}\\bin\\llvm-config --libdir

- name: "Debug: llvm-config"
continue-on-error: true
shell: cmd
run: ${{ env.LLVM_PATH }}\bin\llvm-config --libdir
run: ${{ env.LLVM_PATH }}\\bin\\llvm-config --libdir

- name: Install Bindgen
# id: pdbindgen
# continue-on-error: true
if: runner.os == 'Windows'
env:
# LLVM_CONFIG_PATH: ${{ env.LLVM_PATH }}\bin\llvm-config
# LLVM_CONFIG_PATH: ${{ runner.temp }}\llvm\bin\llvm-config
LIBCLANG_PATH: ${{ env.LLVM_PATH }}\bin
# LLVM_CONFIG_PATH: ${{ env.LLVM_PATH }}\\bin\\llvm-config
# LLVM_CONFIG_PATH: ${{ runner.temp }}\\llvm\\bin\\llvm-config
LIBCLANG_PATH: ${{ env.LLVM_PATH }}\\bin
run: >-
cargo install playdate-bindgen --path ./support/bindgen
--features=cli
Expand Down

0 comments on commit d0f89ef

Please sign in to comment.