You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore(ci): fix error handling
* add timeout for log collection
Sometimes the log collection is stuck
* Fix cleanup to run only once at the exit
* Retest
* Retest
* Add AI rule for `set`
Copy file name to clipboardExpand all lines: .claude/memories/ci-e2e-testing.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -323,6 +323,13 @@ yarn prettier:fix # Fix formatting for shell, markdown, and YAML file
323
323
324
324
**Purpose**: This package provides essential tooling for maintaining code quality in the CI infrastructure, ensuring consistent formatting and shell script best practices across the pipeline scripts.
325
325
326
+
#### Shell Script Conventions
327
+
328
+
**Shell scripts in `.ibm/` folder:**
329
+
-**Never use**`set pipefail` or `set -o pipefail`
330
+
- Only `.ibm/pipelines/openshift-ci-tests.sh` defines global `set` options; other scripts inherit them
331
+
- Functions may temporarily disable/re-enable error handling with `set +e` / `set -e` pattern
Copy file name to clipboardExpand all lines: .cursor/rules/ci-e2e-testing.mdc
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -329,6 +329,13 @@ yarn prettier:fix # Fix formatting for shell, markdown, and YAML file
329
329
330
330
**Purpose**: This package provides essential tooling for maintaining code quality in the CI infrastructure, ensuring consistent formatting and shell script best practices across the pipeline scripts.
331
331
332
+
#### Shell Script Conventions
333
+
334
+
**Shell scripts in `.ibm/` folder:**
335
+
- **Never use** `set pipefail` or `set -o pipefail`
336
+
- Only `.ibm/pipelines/openshift-ci-tests.sh` defines global `set` options; other scripts inherit them
337
+
- Functions may temporarily disable/re-enable error handling with `set +e` / `set -e` pattern
Copy file name to clipboardExpand all lines: .rulesync/rules/ci-e2e-testing.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -340,6 +340,13 @@ yarn prettier:fix # Fix formatting for shell, markdown, and YAML file
340
340
341
341
**Purpose**: This package provides essential tooling for maintaining code quality in the CI infrastructure, ensuring consistent formatting and shell script best practices across the pipeline scripts.
342
342
343
+
#### Shell Script Conventions
344
+
345
+
**Shell scripts in `.ibm/` folder:**
346
+
-**Never use**`set pipefail` or `set -o pipefail`
347
+
- Only `.ibm/pipelines/openshift-ci-tests.sh` defines global `set` options; other scripts inherit them
348
+
- Functions may temporarily disable/re-enable error handling with `set +e` / `set -e` pattern
0 commit comments