Skip to content

Commit

Permalink
run this and see what breaks [run ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
AtofStryker committed Jan 24, 2025
1 parent 222da94 commit 8ebf20f
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions .circleci/workflows.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
version: 2.1

orbs:
browser-tools: circleci/browser-tools@1.5.0

defaults: &defaults
parallelism: 1
working_directory: ~/cypress
Expand Down Expand Up @@ -89,7 +92,9 @@ executors:
# the Docker image with Cypress dependencies and Chrome browser
cy-doc:
docker:
- image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
# here as well
# - image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
- image: cypress/base-internal:20.18.1-bullseye-downstream
# by default, we use "medium" to balance performance + CI costs. bump or reduce on a per-job basis if needed.
resource_class: medium
environment:
Expand All @@ -98,8 +103,10 @@ executors:

kitchensink-executor:
docker:
- image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
# here as well
# - image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
# by default, we use "medium" to balance performance + CI costs. bump or reduce on a per-job basis if needed.
- image: cypress/base-internal:20.18.1-bullseye-downstream
resource_class: medium
environment:
PLATFORM: linux
Expand All @@ -108,7 +115,9 @@ executors:
# Docker image with non-root "node" user
non-root-docker-user:
docker:
- image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
# here as well
# - image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
- image: cypress/base-internal:20.18.1-bullseye-downstream
user: node
environment:
PLATFORM: linux
Expand Down Expand Up @@ -584,6 +593,11 @@ commands:

steps:
- restore_cached_workspace
- browser-tools/install-browser-tools:
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
chrome-version: 132.0.6834.110
# https://download-installer.cdn.mozilla.net/pub/firefox/releases/
firefox-version: 134.0.2
- when:
condition: <<parameters.install-chrome-channel>>
steps:
Expand Down Expand Up @@ -758,6 +772,11 @@ commands:
equal: [ webkit, << parameters.browser >> ]
steps:
- install-webkit-deps
- browser-tools/install-browser-tools:
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
chrome-version: 132.0.6834.110
# https://download-installer.cdn.mozilla.net/pub/firefox/releases/
firefox-version: 134.0.2
- run:
name: Run system tests
environment:
Expand Down Expand Up @@ -1851,7 +1870,9 @@ jobs:
parallelism: 1
working_directory: ~/cypress
docker:
- image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
#here
# - image: cypress/browsers-internal:node20.18.1-bullseye-chrome131-ff133
- image: cypress/base-internal:20.18.1-bullseye-downstream
environment:
# needed to inform the bootstrap-docker-container.sh script to link the binary in the system-test project directory
REPO_DIR: /root/cypress
Expand Down

0 comments on commit 8ebf20f

Please sign in to comment.