Fix build step directory handling - add better cd error handling and debugging
Some checks failed
package-tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk python_version:3.13]) (push) Failing after 5s
package-tests / test-python-packages (map[name:aitbc-cli path:. python_version:3.13]) (push) Failing after 9s
package-tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core python_version:3.13]) (push) Failing after 6s
package-tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk python_version:3.13]) (push) Failing after 1s
package-tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto python_version:3.13]) (push) Successful in 16s
package-tests / test-javascript-packages (map[name:aitbc-sdk node_version:24 path:packages/js/aitbc-sdk]) (push) Successful in 10s
package-tests / cross-language-compatibility (push) Has been skipped
package-tests / package-integration-tests (push) Has been skipped
security-scanning / audit (push) Successful in 8s

This commit is contained in:
aitbc1
2026-03-28 12:36:05 +01:00
parent 3e4a66e77c
commit 578ca27f01

View File

@@ -531,7 +531,18 @@ jobs:
- name: Build Package
run: |
echo "=== BUILDING PYTHON PACKAGE ==="
cd /opt/aitbc/python-packages-workspace/repo/${{ matrix.package.path }}
echo "Current PWD before cd: $(pwd)"
# Ensure we're in the correct directory
cd /opt/aitbc/python-packages-workspace/repo/${{ matrix.package.path }} || {
echo "❌ Failed to cd to package path, trying alternatives..."
cd /opt/aitbc/python-packages-workspace/repo || cd / || true
cd ${{ matrix.package.path }} 2>/dev/null || true
}
echo "Current PWD after cd: $(pwd)"
echo "Directory contents:"
ls -la
# For root-level packages (like aitbc-cli), use python build instead of poetry
if [[ "${{ matrix.package.path }}" == "." ]]; then
@@ -547,7 +558,11 @@ jobs:
fi
# Check build output
ls -la dist/
ls -la dist/ 2>/dev/null || {
echo "❌ dist/ not found, checking current directory:"
ls -la
find . -name "dist" -type d 2>/dev/null || echo "No dist directory found"
}
echo "✅ Python package built successfully"