@oisincoveney/pipeline 3.11.6 → 3.11.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/argo-workflow.js +3 -3
- package/package.json +1 -1
package/dist/argo-workflow.js
CHANGED
|
@@ -13,7 +13,7 @@ const RUNNER_WORKFLOW_PAYLOAD_PATH = "/etc/pipeline/payload.json";
|
|
|
13
13
|
const RUNNER_WORKFLOW_SCHEDULE_PATH = "/etc/pipeline/schedule.yaml";
|
|
14
14
|
const RUNNER_GIT_CREDENTIALS_PATH = "/etc/pipeline/git-credentials";
|
|
15
15
|
const RUNNER_RETRY_STRATEGY = {
|
|
16
|
-
expression: "lastRetry.status == 'Error' || lastRetry.exitCode
|
|
16
|
+
expression: "lastRetry.status == 'Error' || (lastRetry.exitCode != '0' && lastRetry.exitCode != '1')",
|
|
17
17
|
limit: "3",
|
|
18
18
|
retryPolicy: "Always"
|
|
19
19
|
};
|
|
@@ -24,11 +24,11 @@ const RUNNER_OPENCODE_ENV = [{
|
|
|
24
24
|
const DEFAULT_RUNNER_RESOURCES = {
|
|
25
25
|
limits: {
|
|
26
26
|
cpu: "4",
|
|
27
|
-
memory: "
|
|
27
|
+
memory: "12Gi"
|
|
28
28
|
},
|
|
29
29
|
requests: {
|
|
30
30
|
cpu: "1",
|
|
31
|
-
memory: "
|
|
31
|
+
memory: "8Gi"
|
|
32
32
|
}
|
|
33
33
|
};
|
|
34
34
|
const kubernetesNameSchema = z.string().min(1);
|
package/package.json
CHANGED
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"prepack": "bun run build:cli"
|
|
128
128
|
},
|
|
129
129
|
"type": "module",
|
|
130
|
-
"version": "3.11.
|
|
130
|
+
"version": "3.11.8",
|
|
131
131
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
132
132
|
"main": "./dist/index.js",
|
|
133
133
|
"types": "./dist/index.d.ts",
|