echo conan profile path

This commit is contained in:
tequ
2025-11-27 13:27:47 +09:00
parent 0fba76363a
commit be3c3d2bde
2 changed files with 3 additions and 16 deletions

View File

@@ -129,6 +129,9 @@ runs:
EOF
fi
# Display profile path for verification
conan profile path default
# Display profile for verification
conan profile show

View File

@@ -360,19 +360,3 @@ jobs:
echo "Error: rippled executable not found in ${{ env.build_dir }}"
exit 1
fi
debug-containers:
runs-on: [self-hosted, generic, 24.04]
if: always()
needs: [build]
steps:
- name: Cleanup current container on job completion
run: |
echo "=== Current containers ==="
docker ps -a
# echo "=== Job completed, marking container for cleanup ==="
# CURRENT_CONTAINER_ID="${{ steps.container-info.outputs.container_id }}"
# echo "Current container ID: ${CURRENT_CONTAINER_ID}"
# docker container update --label-add "xahau-ci-completed=true" "$CURRENT_CONTAINER_ID" 2>/dev/null || true
# echo "Container marked as completed. It will be cleaned up in the next run."