From 6dc60ef8358335c565afb4e3e3ab11bdf5268705 Mon Sep 17 00:00:00 2001 From: catch <6915-catch@users.noreply.drupalcode.org> Date: Sat, 21 Sep 2024 08:27:26 +0100 Subject: [PATCH] Issue #3469687 by catch, fjgarlin, longwave: Reduce CPU requirements for core gitlab pipelines --- .gitlab-ci/pipeline.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci/pipeline.yml b/.gitlab-ci/pipeline.yml index c3e13d37602a..baabe6af140b 100644 --- a/.gitlab-ci/pipeline.yml +++ b/.gitlab-ci/pipeline.yml @@ -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: -- GitLab