File tree Expand file tree Collapse file tree 2 files changed +82
-127
lines changed Expand file tree Collapse file tree 2 files changed +82
-127
lines changed Original file line number Diff line number Diff line change @@ -49,18 +49,14 @@ jobs:
49
49
- name : Check patch
50
50
if : ${{ !cancelled() && env.fatal != 'true' }}
51
51
run : |
52
- source ci/build.sh
53
- export -f check_checkpatch set_step_fail set_step_warn
54
- status=0; timeout 1d bash -c "check_checkpatch" || status=$?
52
+ status=0; timeout 1d bash -c "source ci/build.sh ; check_checkpatch" || status=$?
55
53
[ $status -eq 124 ] && echo "step_fail_checkpatch_timeout=true" >> "$GITHUB_ENV"
56
54
exit $status
57
55
58
56
- name : Coccicheck
59
57
if : ${{ !cancelled() && env.fatal != 'true' }}
60
58
run : |
61
- source ci/build.sh
62
- export -f check_coccicheck set_step_fail set_step_warn
63
- status=0; timeout 1d bash -c "check_coccicheck" || status=$?
59
+ status=0; timeout 1d bash -c "source ci/build.sh ; check_coccicheck" || status=$?
64
60
[ $status -eq 124 ] && echo "step_fail_coccicheck_timeout=true" >> "$GITHUB_ENV"
65
61
exit $status
66
62
You can’t perform that action at this time.
0 commit comments