Skip to content

Commit 1e3bce9

Browse files
committed
fix: run e2d in CD with 1 thread
1 parent 4f00dae commit 1e3bce9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/actions/tests/run-e2e-tests/action.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ inputs:
4040
decrypt:
4141
description: 'Decrypt secrets'
4242
required: false
43+
threads:
44+
description: 'Number of threads to use'
45+
required: false
46+
default: '4'
4347

4448
runs:
4549
using: composite
@@ -75,7 +79,7 @@ runs:
7579
--log-cli-level '${{ inputs.log_level }}' \
7680
-k '${{ inputs.keyword }}' \
7781
-m '${{ inputs.markers }}' \
78-
-n 4 \
82+
-n '${{ inputs.threads}}' \
7983
--dist=loadgroup \
8084
--ci-run \
8185
--init-timestamp '${{ inputs.init_timestamp }}' \

.github/workflows/cd.yml

+4
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ jobs:
238238
env: staging
239239
decrypt: true
240240
markers: "not active_flow and not passive_flow and (CD or rpc)"
241+
threads: 1
241242

242243
run-all-tests:
243244
permissions:
@@ -265,6 +266,7 @@ jobs:
265266
decrypt: true
266267
markers: "not active_flow and not passive_flow"
267268
deployment_mc_epoch: $DEPLOYMENT_MC_EPOCH
269+
threads: 1
268270

269271
wait-for-n1-epoch:
270272
permissions:
@@ -326,6 +328,7 @@ jobs:
326328
latest_mc_epoch: true
327329
markers: "not active_flow and not passive_flow"
328330
deployment_mc_epoch: $DEPLOYMENT_MC_EPOCH
331+
threads: 1
329332

330333
wait-for-n2-epoch:
331334
permissions:
@@ -387,6 +390,7 @@ jobs:
387390
latest_mc_epoch: true
388391
markers: "not active_flow and not passive_flow"
389392
deployment_mc_epoch: $DEPLOYMENT_MC_EPOCH
393+
threads: 1
390394

391395
publish:
392396
permissions:

0 commit comments

Comments
 (0)