File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ):
You can’t perform that action at this time.
0 commit comments