Skip to content

Commit 6e8dbd5

Browse files
committed
Draft.
1 parent 2071641 commit 6e8dbd5

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)