Skip to content

Commit ceada2a

Browse files
author
Mandy Chen
committed
Added debugging
1 parent 9d30744 commit ceada2a

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/ci-checks.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ jobs:
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:

scripts/gen_coverage_metadata.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)