File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -181,12 +181,10 @@ jobs:
181181
182182
183183 - name : _check_nv-lts-series535p
184- shell : bash
185184 run : |
186185 ./ubiquitous_bash.sh _check_nv-lts-series535p
187186 timeout-minutes : 300
188187 - name : _check_nv-lts-legacy470
189- shell : bash
190188 run : |
191189 ./ubiquitous_bash.sh _check_nv-lts-legacy470
192190 timeout-minutes : 300
@@ -326,14 +324,14 @@ jobs:
326324
327325
328326
329-
330-
331-
332-
333327 - name : _check_nv-mainline-series535p
334328 shell : bash
335329 run : |
330+ set +e # disable automatic exit‑on‑error
336331 ./ubiquitous_bash.sh _check_nv-mainline-series535p
332+ rc=$? # capture the script’s exit code
333+ echo "exit_code=$rc" >> "$GITHUB_OUTPUT"
334+ exit $rc # explicitly exit with that code
337335 timeout-minutes : 300
338336 - name : _check_nv-mainline-legacy470
339337 shell : bash
You can’t perform that action at this time.
0 commit comments