Skip to content

Commit 8ad2649

Browse files
committed
~
1 parent d7fa3da commit 8ad2649

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

.github/workflows/tests.yml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -99,27 +99,35 @@ jobs:
9999
- name: SDK ${{ steps.sdk.outputs.version }} installed
100100
run: which pdc && pdc --version
101101

102-
# - name: "Debug: Pre Install Bindgen"
103-
# run: |
104-
# echo "from hardcode:"
105-
# ls "${{ runner.temp }}"
106-
# ls "${{ runner.temp }}/llvm"
107-
# ls "${{ runner.temp }}/llvm/*"
108-
# # echo "from env:"
109-
# # ls "${{ env.LLVM_PATH }}"
110-
# # ls "${{ env.LLVM_PATH }}/*"
102+
- name: "Debug: Pre Install Bindgen"
103+
continue-on-error: true
104+
run: |
105+
ls "${{ runner.temp }}/llvm/bin"
106+
${{ env.LLVM_PATH }}\bin\llvm-config --libdir
107+
108+
- name: "Debug: llvm-config"
109+
continue-on-error: true
110+
shell: powershell
111+
run: ${{ env.LLVM_PATH }}\bin\llvm-config --libdir
112+
113+
- name: "Debug: llvm-config"
114+
continue-on-error: true
115+
shell: cmd
116+
run: ${{ env.LLVM_PATH }}\bin\llvm-config --libdir
111117

112118
- name: Install Bindgen
113119
# id: pdbindgen
114120
# continue-on-error: true
115121
if: runner.os == 'Windows'
116122
env:
117-
LLVM_CONFIG_PATH: ${{ env.LLVM_PATH }}\bin\llvm-config
123+
# LLVM_CONFIG_PATH: ${{ env.LLVM_PATH }}\bin\llvm-config
118124
# LLVM_CONFIG_PATH: ${{ runner.temp }}\llvm\bin\llvm-config
125+
LIBCLANG_PATH: ${{ env.LLVM_PATH }}\bin
119126
run: >-
120127
cargo install playdate-bindgen --path ./support/bindgen
121-
--features=cli,static --no-default-features
128+
--features=cli
122129
--debug
130+
# --features=cli,static --no-default-features
123131

124132
- name: Test Sys (host)
125133
run: |

0 commit comments

Comments
 (0)