File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments