Issue #3469687 by catch, fjgarlin, longwave: Reduce CPU requirements for core gitlab pipelines
parent
f2e7da64b6
commit
6dc60ef835
|
@ -125,11 +125,11 @@ variables:
|
|||
|
||||
'🖱️️️ PHPUnit Functional Javascript':
|
||||
<<: [ *with-composer, *run-tests, *default-job-settings ]
|
||||
parallel: 2
|
||||
parallel: 3
|
||||
variables:
|
||||
TESTSUITE: PHPUnit-FunctionalJavascript
|
||||
CONCURRENCY: 15
|
||||
KUBERNETES_CPU_REQUEST: "24"
|
||||
CONCURRENCY: 5
|
||||
KUBERNETES_CPU_REQUEST: "16"
|
||||
services:
|
||||
- <<: *with-database
|
||||
- <<: *with-chrome
|
||||
|
@ -139,10 +139,11 @@ variables:
|
|||
|
||||
'🌐️️ PHPUnit Functional':
|
||||
<<: [ *with-composer, *run-tests, *default-job-settings ]
|
||||
parallel: 7
|
||||
parallel: 8
|
||||
variables:
|
||||
TESTSUITE: PHPUnit-Functional
|
||||
KUBERNETES_CPU_REQUEST: "24"
|
||||
CONCURRENCY: "5"
|
||||
KUBERNETES_CPU_REQUEST: "16"
|
||||
services:
|
||||
- <<: *with-database
|
||||
|
||||
|
@ -152,6 +153,7 @@ variables:
|
|||
variables:
|
||||
TESTSUITE: PHPUnit-Kernel
|
||||
KUBERNETES_CPU_REQUEST: "8"
|
||||
CONCURRENCY: 12
|
||||
services:
|
||||
- <<: *with-database
|
||||
|
||||
|
@ -199,7 +201,7 @@ variables:
|
|||
- chown -R www-data:www-data ./sites /var/www
|
||||
- cd core
|
||||
- corepack enable
|
||||
- sudo -u www-data yarn run test:nightwatch --workers=4
|
||||
- sudo -u www-data yarn run test:nightwatch --workers=3
|
||||
after_script:
|
||||
- cp /builds/chromedriver.log ./
|
||||
artifacts:
|
||||
|
|
Loading…
Reference in New Issue