Skip to content

Commit

Permalink
Use cypress/browsers Docker image short-form tag in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 committed Dec 16, 2024
1 parent 2bb4555 commit aba493c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/app/continuous-integration/aws-codebuild.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ version: 0.2
## https://docs.aws.amazon.com/codebuild/latest/userguide/batch-build-buildspec.html
## Define build to run using the
## "cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1" image
## "cypress/browsers:22.12.0" image
## from the Cypress Amazon ECR Public Gallery
batch:
fast-fail: false
build-list:
- identifier: cypress-e2e-tests
env:
image: public.ecr.aws/cypress-io/cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: public.ecr.aws/cypress-io/cypress/browsers:22.12.0
phases:
install:
Expand Down
4 changes: 2 additions & 2 deletions docs/app/continuous-integration/bitbucket-pipelines.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ example, this allows us to run the tests in Firefox by passing the
Read about [Cypress docker variants](/app/continuous-integration/overview#Cypress-Docker-variants) to decide which image is best for your project.

```yaml title="bitbucket-pipelines.yml"
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
pipelines:
default:
Expand Down Expand Up @@ -87,7 +87,7 @@ Artifacts from a job can be defined by providing paths to the `artifacts`
attribute.

```yaml title="bitbucket-pipelines.yml"
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
pipelines:
default:
Expand Down
2 changes: 1 addition & 1 deletion docs/app/continuous-integration/github-actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ jobs:
cypress-run:
runs-on: ubuntu-22.04
container:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
options: --user 1001
steps:
- name: Checkout
Expand Down
10 changes: 5 additions & 5 deletions docs/app/continuous-integration/gitlab-ci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ stages:
- test
test:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
stage: test
script:
# install dependencies
Expand Down Expand Up @@ -99,7 +99,7 @@ cache:
- .npm/
test:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
stage: test
script:
# install dependencies
Expand Down Expand Up @@ -166,7 +166,7 @@ cache:
## Install npm dependencies and Cypress
install:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
stage: build
script:
- npm ci
Expand Down Expand Up @@ -211,13 +211,13 @@ cache:
## Install npm dependencies and Cypress
install:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
stage: build
script:
- npm ci
ui-chrome-tests:
image: cypress/browsers:node-22.11.0-chrome-130.0.6723.69-1-ff-132.0-edge-130.0.2849.56-1
image: cypress/browsers:22.12.0
stage: test
parallel: 5
script:
Expand Down

0 comments on commit aba493c

Please sign in to comment.