Skip to content

Commit 5a1cefb

Browse files
committed
cleanup: remove debug steps from workflow, Void is fixed
1 parent b6cbe73 commit 5a1cefb

1 file changed

Lines changed: 2 additions & 16 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434

3535
- name: Build Docker image
36-
run: |
37-
docker build -t lsg-test:${{ matrix.distro }} -f tests/docker/Dockerfile.${{ matrix.distro }} . 2>&1 | tee docker-build.log
38-
echo "BUILD_EXIT_CODE=${PIPESTATUS[0]}" >> $GITHUB_ENV
39-
continue-on-error: true
40-
41-
- name: Check build result
42-
run: |
43-
if [ "$BUILD_EXIT_CODE" != "0" ]; then
44-
echo "## ❌ Docker build failed for ${{ matrix.distro }}" >> $GITHUB_STEP_SUMMARY
45-
echo '```' >> $GITHUB_STEP_SUMMARY
46-
tail -50 docker-build.log >> $GITHUB_STEP_SUMMARY
47-
echo '```' >> $GITHUB_STEP_SUMMARY
48-
exit 1
49-
fi
36+
run: docker build -t lsg-test:${{ matrix.distro }} -f tests/docker/Dockerfile.${{ matrix.distro }} .
5037

5138
- name: Run tests
5239
run: python3 tests/runner.py --distro ${{ matrix.distro }}
@@ -76,5 +63,4 @@ jobs:
7663
name: report-${{ matrix.distro }}
7764
path: |
7865
report.json
79-
report-${{ matrix.distro }}.html
80-
docker-build.log
66+
report-${{ matrix.distro }}.html

0 commit comments

Comments
 (0)