mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-05 06:40:56 -06:00
* chore: upgrade electron to 32.2.0 -- run ci * fix node versions * fix build * fix evil-dns * various fixes * fix srcdoc * various fixes * update package.json * update yarn.lock * various fixes * fix integrity check * fix binary verification * various fixes * update yarn.lock * fix typo * fix lock file * fix tests * fix tests * various fixes * various fixes * various fixes * fix stuff * fix things * try to fix errors * fix * updates * add yarn berry * upgrade electron * attempt with gcc * blank * update arm64 executor * try to fix the arm64 issue * fix arm64 * bump cache * attempt to fix arm64 again * attempt to fix arm64 again * fix darwin problems * merge release/14.0.0 * update yarn.lock * blank -- run ci * blank * blank * blank * try something * try something * clean up * blank * try to fix sessions issue * fixes * get more info * get more info * try something * fix * try something * try something * try something * tweak * one more thing * let us see if this works * blank * chore: updating v8 snapshot cache * chore: updating v8 snapshot cache * chore: updating v8 snapshot cache * Apply suggestions from code review * Apply suggestions from code review * Update cli/CHANGELOG.md Co-authored-by: Jennifer Shehane <jennifer@cypress.io> * Update cli/CHANGELOG.md Co-authored-by: Jennifer Shehane <jennifer@cypress.io> * Update CHANGELOG.md * Update cache-version.txt * fix nx (maybe) * Update package.json * try something * Update packages/app/src/runner/aut-iframe.ts * bump version * try to bust cache * try to invalidate cache * Update cli/CHANGELOG.md * suppress benign warnings * Apply suggestions from code review * PR comments * PR comment * Apply suggestions from code review * chore: updating v8 snapshot cache * chore: updating v8 snapshot cache * chore: updating v8 snapshot cache * Update cli/CHANGELOG.md Co-authored-by: Matt Schile <mschile@cypress.io> * update debug scenario 4 regex * Update scripts/binary/trigger-publish-binary-pipeline.js --------- Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io> Co-authored-by: Matt Schile <mschile@cypress.io>
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
services:
|
|
dev:
|
|
image: cypress/browsers:latest
|
|
ports:
|
|
# Share debugging ports
|
|
- 5566:5566
|
|
- 5567:5567
|
|
environment:
|
|
# Use Hist file from shared volume
|
|
HISTFILE: /root/hist/.bash_history
|
|
# Setup inspect to use the more permissive address when debugging so
|
|
# that we can connect to it from outside the docker container
|
|
CYPRESS_DOCKER_DEV_INSPECT_OVERRIDE: '0.0.0.0:5566'
|
|
# This disables CI mode which causes cypress to build differently
|
|
CI: ''
|
|
command: /bin/bash
|
|
working_dir: /opt/cypress
|
|
volumes:
|
|
# Copy Cypress source to docker container
|
|
- .:/opt/cypress
|
|
- bash-history:/root/hist
|
|
watch:
|
|
image: cypress/browsers:latest
|
|
environment:
|
|
# This disables CI mode which causes cypress to build differently
|
|
CI: ''
|
|
command: yarn watch
|
|
working_dir: /opt/cypress
|
|
volumes:
|
|
# Copy Cypress source to docker container
|
|
- .:/opt/cypress
|
|
ci:
|
|
# This should mirror the image used in workflows.yml
|
|
image: cypress/browsers-internal:node20.18.0-bullseye-chrome129-ff131
|
|
ports:
|
|
- 5566:5566
|
|
- 5567:5567
|
|
command: /bin/bash
|
|
environment:
|
|
HISTFILE: /root/hist/.bash_history
|
|
CYPRESS_DOCKER_DEV_INSPECT_OVERRIDE: '0.0.0.0:5566'
|
|
working_dir: /opt/cypress
|
|
volumes:
|
|
- .:/opt/cypress
|
|
- bash-history:/root/hist
|
|
|
|
# persist terminal history between runs in a virtual volume
|
|
volumes:
|
|
bash-history:
|