Pārlūkot izejas kodu

CI: restore parallelisation

Olivier Massot 4 gadi atpakaļ
vecāks
revīzija
ad8f6a44b4
1 mainītis faili ar 4 papildinājumiem un 0 dzēšanām
  1. 4 0
      .gitlab-ci.yml

+ 4 - 0
.gitlab-ci.yml

@@ -29,6 +29,7 @@ install:
 chrome:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
+  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
     - yarn cypress:run --record --parallel --browser chrome --group "Chrome"
@@ -36,6 +37,7 @@ chrome:
 chrome-mobile:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
+  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
     - yarn cypress:run --record --parallel --browser chrome --group "Chrome - Mobile" --config "viewportWidth=375,viewportHeight=667"
@@ -43,6 +45,7 @@ chrome-mobile:
 firefox:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
+  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
     - yarn cypress:run --record --parallel --browser firefox --group "Firefox"
@@ -50,6 +53,7 @@ firefox:
 firefox-mobile:
   image: cypress/browsers:node14.17.0-chrome88-ff89
   stage: test
+  parallel: 4
   script:
     - yarn ci & npx wait-on http://localhost:3004
     - yarn cypress:run --record --parallel --browser firefox --group "Firefox - Mobile" --config "viewportWidth=375,viewportHeight=667"