Skip to content

Reduce parallelization of Spinach jobs and increase the RSpec ones

What does this MR do?

Now that we're porting more and more Spinach specs to RSpec, the spinach jobs are taking less and less time.

We could take this opportunity to reduce the parallelization of the spinach jobs:

  • spinach jobs take about 90 minutes in total, so it's currently 90/10 = 9 minutes per job

  • rspec jobs take about 477 minutes in total, so it's currently 477/20 = 24 minutes per job

If we remove 5 jobs from spinach and add 5 jobs to rspec, we would get approximately:

  • spinach: 90/5 = 18 minutes per job

  • rspec: 477/25 = 19 minutes per job

Closes #34911 (closed)

Merge request reports