Skip to content

Commit

Permalink
add group names to several CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Jul 30, 2019
1 parent d50a12b commit 9e3f7ca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Expand Up @@ -38,7 +38,7 @@ install:
# start the server in the background
- npm run start:ci &
# run Cypress test in load balancing mode
- npm run e2e:record -- --parallel --group electrons
- npm run e2e:record -- --parallel --group "electrons on GitLab CI"
artifacts:
when: always
paths:
Expand Down
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -36,22 +36,22 @@ jobs:
# but we can pass group name via environment variable to Cypress test runner
- stage: test
env:
- STAGE_NAME=1x-electron
- STAGE_NAME="1x-electron on Travis CI"
<<: *defaults
# run tests in parallel by including several test jobs with same name variable
- stage: test
env:
- STAGE_NAME=4x-electron
- STAGE_NAME="4x-electron on Travis CI"
<<: *defaults
- stage: test
env:
- STAGE_NAME=4x-electron
- STAGE_NAME="4x-electron on Travis CI"
<<: *defaults
- stage: test
env:
- STAGE_NAME=4x-electron
- STAGE_NAME="4x-electron on Travis CI"
<<: *defaults
- stage: test
env:
- STAGE_NAME=4x-electron
- STAGE_NAME="4x-electron on Travis CI"
<<: *defaults
2 changes: 1 addition & 1 deletion azure-ci.yml
Expand Up @@ -36,5 +36,5 @@ jobs:
npx print-env BUILD
npx print-env SYSTEM
npm run start:ci:windows &
npx cypress run --record --parallel --ci-build-id $BUILD_BUILDNUMBER
npx cypress run --record --parallel --ci-build-id $BUILD_BUILDNUMBER --group "Azure CI"
displayName: 'Run Cypress tests'
4 changes: 2 additions & 2 deletions circle.yml
Expand Up @@ -57,7 +57,7 @@ workflows:
record: true # record results on Cypress dashboard
parallel: true # load balance all tests
parallelism: 3 # across 3 machines
group: '3x-electron' # name this group
group: '3x-electron on CircleCI' # name this group
start: 'npm run start:ci' # start server before running tests

# run on 2 machines using Chrome browser
Expand All @@ -74,7 +74,7 @@ workflows:
record: true
parallel: true
parallelism: 2
group: '2x-chrome'
group: '2x-chrome on CircleCI'
start: 'npm run start:ci'

- release:
Expand Down

0 comments on commit 9e3f7ca

Please sign in to comment.