File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -203,9 +203,13 @@ jobs:
203203 echo "Checking for built C extensions..."
204204 find . -name "*.pyd" -o -name "*.so" 2>/dev/null || echo "No extensions found"
205205 ls -R build/ 2>/dev/null || echo "No build directory"
206- echo "Checking DLL dependencies..."
207- python -c "import sys; print('Python path:', sys.path)"
208- python -c "import httpmorph._httpmorph; print('SUCCESS: C extension loaded')" || python -c "import traceback; traceback.print_exc()"
206+ echo ""
207+ echo "Checking for DLL files..."
208+ ls -la vendor/boringssl/build/Release/*.dll vendor/boringssl/build/Release/*.lib 2>/dev/null || echo "No DLLs in BoringSSL Release"
209+ ls -la C:/vcpkg/installed/x64-windows/bin/*.dll 2>/dev/null | head -20 || echo "No DLLs in vcpkg"
210+ echo ""
211+ echo "Attempting to load C extension..."
212+ python -c "import sys; sys.path.insert(0, 'src'); import httpmorph._httpmorph; print('SUCCESS: C extension loaded')" 2>&1 || echo "Failed to load extension"
209213 shell : bash
210214
211215 - name : Lint
You can’t perform that action at this time.
0 commit comments