Skip to content

Commit ad56df5

Browse files
committed
testing
1 parent 1f6ea8f commit ad56df5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test-all.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ jobs:
110110
- name: Run tests
111111
id: run-tests
112112
run: |
113-
sudo -E ./test.overall.sh 2>&1 | tee -a output.log
113+
# sudo -E ./test.overall.sh 2>&1 | tee -a output.log
114+
cd c-fs
115+
CC=clang
116+
sudo -E ./scripts/test/all.sh 2>&1 | tee -a ../output.log
114117
RESULT=$(grep -q 'FAILED' output.log && echo 'failure' || echo 'success')
115118
echo "result=$RESULT" >> $GITHUB_OUTPUT
116119
echo "result_upper=$(echo $RESULT | tr 'a-z' 'A-Z')" >> $GITHUB_OUTPUT
@@ -126,10 +129,10 @@ jobs:
126129
route: PATCH /repos/{owner}/{repo}/check-runs/{check_run_id}
127130
owner: ${{ steps.parse_repo.outputs.owner }}
128131
repo: ${{ steps.parse_repo.outputs.repo }}
129-
# check_run_id: ${{ steps.create_check.outputs.data.id }}
130132
check_run_id: ${{ fromJson(steps.create_check.outputs.data).id }}
131133
status: 'completed'
132-
conclusion: ${{ steps.run-tests.outputs.result }}
134+
# conclusion: ${{ steps.run-tests.outputs.result }}
135+
conclusion: ${{ steps.run-tests.outputs.result || job.status }}
133136
started_at: ${{ github.event.client_payload.start_time }}
134137
completed_at: ${{ steps.completion_time.outputs.completion_time }}
135138
output: |

0 commit comments

Comments
 (0)