Skip to content

Commit f40f0ff

Browse files
committed
Fix CLAP test path, add debug output for ARM64EC issue
1 parent cddb26f commit f40f0ff

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/build-win.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,13 @@ jobs:
181181
- name: Test CLAP with CLAP Validator
182182
shell: bash
183183
run: |
184-
clapPath="./${{matrix.project}}.clap"
184+
clapPath="./${{matrix.project}}_x64.clap"
185185
if [ -f "$clapPath" ]; then
186186
./clap-validator.exe validate "$clapPath"
187187
else
188188
echo "CLAP not found at $clapPath"
189+
echo "Available files:"
190+
ls -la *.clap 2>/dev/null || echo "No .clap files found"
189191
exit 1
190192
fi
191193

TemplateProject/scripts/makezip-win.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,30 @@ def main():
2626
demo=int(sys.argv[1])
2727
zip=int(sys.argv[2])
2828

29+
# Debug: list build-win contents
30+
build_dir = projectpath + "\\build-win"
31+
print("=== Contents of build-win ===")
32+
if os.path.exists(build_dir):
33+
for item in os.listdir(build_dir):
34+
item_path = os.path.join(build_dir, item)
35+
if os.path.isdir(item_path):
36+
print(f" [DIR] {item}")
37+
else:
38+
print(f" {item}")
39+
else:
40+
print(" build-win directory not found!")
41+
42+
# Debug: check VST3 bundle structure
43+
vst3_bundle = build_dir + "\\TemplateProject.vst3"
44+
if os.path.exists(vst3_bundle):
45+
print("=== VST3 bundle structure ===")
46+
for root, dirs, files in os.walk(vst3_bundle):
47+
level = root.replace(vst3_bundle, '').count(os.sep)
48+
indent = ' ' * level
49+
print(f"{indent}{os.path.basename(root)}/")
50+
for file in files:
51+
print(f"{indent} {file}")
52+
2953
dir = projectpath + "\\build-win\\out"
3054

3155
if os.path.exists(dir):

0 commit comments

Comments
 (0)