Replies: 1 comment
-
@efiShtain Did you find any workaround for this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The Problem
Running in gitlab-ci, using parallel, trying to allow re running only the failed jobs.
I have the following (reduced) pipeline
It spawns 5 parallel jobs that should split the specs based on cypress cloud orchestrator. The --ci-build-id flag is here to support retry failed job based on the workaround described here issue #8451
The workaround works well if I set the parallel to 1
But when trying to run tests in parallel > 1 it does not work
Each job gets a unique ci-build-id so cypress cloud does not split the specs between the jobs
If I stick to the inferred ci-build-id (which is CI_PIPELINE_ID in gitlab), the parallel execution works, but I can't retry any failed job
Any ideas ?
Beta Was this translation helpful? Give feedback.
All reactions