You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tags: ${{ env.IMAGE_NAME }}:${{ github.sha }}${{ github.ref == 'refs/heads/main' && format(',{0}:latest', env.IMAGE_NAME) || '' }} # only update 'latest' tag if push is to the 'main' branch
141
-
cache-from: type=gha
142
-
cache-to: type=gha,mode=max
77
+
# - name: Gather logs and debugging information
78
+
# if: always()
79
+
# shell: bash
80
+
# run: |
81
+
# # Create logs directory
82
+
# mkdir -p logs
83
+
84
+
# docker logs llama-stack > logs/llama-stack.log 2>&1 || echo "Failed to get llama-stack logs" > logs/llama-stack.log
85
+
# docker logs vllm > logs/vllm.log 2>&1 || echo "Failed to get vllm logs" > logs/vllm.log
86
+
87
+
# # Gather system information
88
+
# echo "=== System information ==="
89
+
# {
90
+
# echo "Disk usage:"
91
+
# df -h
92
+
# echo "Memory usage:"
93
+
# free -h
94
+
# echo "Docker images:"
95
+
# docker images
96
+
# echo "Docker containers:"
97
+
# docker ps -a
98
+
# } > logs/system-info.log 2>&1
99
+
100
+
# # Gather integration test logs if they exist
101
+
# echo "=== Integration test artifacts ==="
102
+
# if [ -d "/tmp/llama-stack-integration-tests" ]; then
103
+
# find /tmp/llama-stack-integration-tests -name "*.log" -o -name "pytest.log" -o -name "*.out" 2>/dev/null | while read -r file; do
# tags: ${{ env.IMAGE_NAME }}:${{ github.sha }}${{ github.ref == 'refs/heads/main' && format(',{0}:latest', env.IMAGE_NAME) || '' }} # only update 'latest' tag if push is to the 'main' branch
0 commit comments