-
Notifications
You must be signed in to change notification settings - Fork 383
/
Copy path.env
52 lines (39 loc) · 2.42 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
## This env file represents the primary versions Cypress supports.
## These are the latest stable versions and Node.js Active LTS.
##
## If you wish to release Docker image(s) with alternate (i.e. non-primary) versions, do not modify this file in the master branch.
## Follow the instructions in the CONTRIBUTING document for alternate versions and work instead in a feature branch.
# Use Debian stable release https://www.debian.org/releases/stable/
# The Debian image cypress/factory is based on
BASE_IMAGE='debian:12.9-slim'
# Node Versions: https://nodejs.org/en/download/releases/
# master branch needs "Active LTS" version
# use feature branch for "Maintenance LTS" or "Current" versions
FACTORY_DEFAULT_NODE_VERSION='22.13.0'
# Node Versions: https://nodejs.org/en/download/releases/
NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}"
# Update the FACTORY_VERSION to deploy cypress/factory if you make changes to
# BASE_IMAGE, FACTORY_DEFAULT_NODE_VERSION, YARN_VERSION, factory.Dockerfile or installScripts
FACTORY_VERSION='5.2.0'
# Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
CHROME_VERSION='132.0.6834.83-1'
# Cypress versions: https://www.npmjs.com/package/cypress
CYPRESS_VERSION='14.0.0'
# Edge versions: https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/
EDGE_VERSION='131.0.2903.147-1'
# Firefox versions: https://download-installer.cdn.mozilla.net/pub/firefox/releases/
FIREFOX_VERSION='134.0.1'
# Yarn versions: https://www.npmjs.com/package/yarn and
# https://classic.yarnpkg.com/latest-version
YARN_VERSION='1.22.22'
# Webkit versions: https://www.npmjs.com/package/playwright-webkit
# TODO: Globally installed webkit currently isn't found, see issue /~https://github.com/cypress-io/cypress/issues/25344
# WEBKIT_VERSION='1.29.0'
# Tags used for the Docker images generated from cypress/factory.
# A change to BASE_IMAGE_TAG, BROWSERS_IMAGE_TAG or INCLUDED_IMAGE_TAG causes a corresponding new image to be deployed.
# The short-form convenience tags, BROWSERS_IMAGE_SHORT_TAG and INCLUDED_IMAGE_SHORT_TAG, are not used in determining whether to deploy a new image.
BASE_IMAGE_TAG="${NODE_VERSION}"
BROWSERS_IMAGE_SHORT_TAG="${NODE_VERSION}"
BROWSERS_IMAGE_TAG="node-${NODE_VERSION}-chrome-${CHROME_VERSION}-ff-${FIREFOX_VERSION}-edge-${EDGE_VERSION}"
INCLUDED_IMAGE_SHORT_TAG="${CYPRESS_VERSION}"
INCLUDED_IMAGE_TAG="cypress-${CYPRESS_VERSION}-${BROWSERS_IMAGE_TAG}"