Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 18.15.0 images needed for cypress monorepo (chrome/fir… #929

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@ commands:
if [ << parameters.target >> == browsers ]; then DOCKER_TAG=cypress/browsers:${BROWSERS_IMAGE_TAG}; fi
if [ << parameters.target >> == included ]; then DOCKER_TAG=cypress/included:${INCLUDED_IMAGE_TAG}; fi

if npx docker-image-not-found --repo $DOCKER_TAG; then
echo Docker hub says image $DOCKER_TAG does not exist
else
echo Docker hub has image $DOCKER_TAG or not responding
echo We should stop in this case
circleci-agent step halt
fi

jobs:
check-factory-versions:
machine:
Expand Down Expand Up @@ -329,7 +321,7 @@ workflows:
filters:
branches:
only: # only branches matching the below regex filters will run
- master
- chore/node_18.15.0_images
requires:
- factory
- factory-arm
Expand All @@ -342,7 +334,7 @@ workflows:
filters:
branches:
only: # only branches matching the below regex filters will run
- master
- chore/node_18.15.0_images
requires:
- "Push Factory Image"
- base
Expand All @@ -354,7 +346,7 @@ workflows:
filters:
branches:
only: # only branches matching the below regex filters will run
- master
- chore/node_18.15.0_images
requires:
- "Push Factory Image"
- browsers
Expand All @@ -366,7 +358,7 @@ workflows:
filters:
branches:
only: # only branches matching the below regex filters will run
- master
- chore/node_18.15.0_images
requires:
- "Push Factory Image"
- included
Expand Down
6 changes: 3 additions & 3 deletions factory/.env
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ BASE_IMAGE='debian:bullseye-slim'
FACTORY_DEFAULT_NODE_VERSION='20.5.0'

# Node Versions: https://nodejs.org/en/download/releases/
NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}"
NODE_VERSION='18.15.0'

# Update this to deploy the docker factory if you make changes to factory.Dockerfile or install scripts
FACTORY_VERSION='3.0.0'

# Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
CHROME_VERSION='114.0.5735.133-1'
CHROME_VERSION='106.0.5249.61-1'

# Cypress versions: https://www.npmjs.com/package/cypress
CYPRESS_VERSION='13.0.0'
Expand All @@ -26,7 +26,7 @@ CYPRESS_VERSION='13.0.0'
EDGE_VERSION='114.0.1823.51-1'

# Firefox versions: https://download-installer.cdn.mozilla.net/pub/firefox/releases/
FIREFOX_VERSION='114.0.2'
FIREFOX_VERSION='99.0.1'

# Yarn versions: https://www.npmjs.com/package/yarn
YARN_VERSION='1.22.19'
Expand Down
1 change: 1 addition & 0 deletions factory/factory.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ RUN ls -la /root \
&& apt-get install --no-install-recommends -y \
# Always install: Needed to run Cypress
xvfb \
xauth \
libglib2.0-0 \
libnss3 \
libatk1.0-0 \
Expand Down