File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 2121 go-version : ' 1.23.4'
2222
2323 - name : Run unit test
24- uses : nick-fields/retry@v3
25- with :
26- max_attempts : 2
27- timeout_minutes : 30
28- command : |
29- docker compose -f docker/github_actions/docker-compose.yml run unit-test bash -c "make unit_test && ./scripts/gen_coverage_metadata.sh .build/metadata.txt"
24+ run : docker compose -f docker/github_actions/docker-compose.yml run unit-test bash -c "make unit_test && ./scripts/gen_coverage_metadata.sh .build/metadata.txt"
3025
3126 - name : Upload coverage artifacts
3227 uses : actions/upload-artifact@v4
@@ -110,6 +105,19 @@ jobs:
110105 command : |
111106 docker compose -f docker/github_actions/docker-compose.yml run integ-test bash -c "make integ_test_sticky_on"
112107
108+ - name : Debug file structure
109+ run : |
110+ echo "=== Debug: Listing .build directory ==="
111+ find .build -type f -name "*.out" 2>/dev/null || echo "No .out files found"
112+ echo "=== Debug: Listing .build directory structure ==="
113+ find .build -type d 2>/dev/null || echo "No .build directory found"
114+ echo "=== Debug: Current directory contents ==="
115+ ls -la
116+ echo "=== Debug: Checking if files exist in container ==="
117+ docker compose -f docker/github_actions/docker-compose.yml run --rm integ-test bash -c "find .build -type f -name '*.out' 2>/dev/null || echo 'No .out files found in container'"
118+ echo "=== Debug: Container directory structure ==="
119+ docker compose -f docker/github_actions/docker-compose.yml run --rm integ-test bash -c "find .build -type d 2>/dev/null || echo 'No .build directory found in container'"
120+
113121 - name : Upload coverage artifacts
114122 uses : actions/upload-artifact@v4
115123 with :
You can’t perform that action at this time.
0 commit comments