From bcd36efc70c03700299c8a261dde53c85c8fb857 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Tue, 30 Apr 2024 09:55:25 -0400 Subject: [PATCH] chore: removes ubuntu 20 image and adds ubuntu 24 image under test. Adds node 22 for binary tests and updates node 18 and node 20 to newer feature versions of those releases [run ci] (#29412) --- system-tests/test-binary/ci_environments_spec.ts | 8 ++++---- system-tests/test-binary/node_versions_spec.ts | 10 ++++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/system-tests/test-binary/ci_environments_spec.ts b/system-tests/test-binary/ci_environments_spec.ts index e2ffdcd832ae..ff8dd5782105 100644 --- a/system-tests/test-binary/ci_environments_spec.ts +++ b/system-tests/test-binary/ci_environments_spec.ts @@ -25,12 +25,12 @@ describe('e2e binary CI environments', () => { ) smokeTestDockerImage( - 'ubuntu 20 passes', - 'cypress/base-internal:ubuntu20-node18', 0, + 'ubuntu 22 passes', + 'cypress/base-internal:ubuntu22-node18', 0, ) smokeTestDockerImage( - 'ubuntu 22 passes', - 'cypress/base-internal:ubuntu22-node18', 0, + 'ubuntu 24 passes', + 'cypress/base-internal:ubuntu24-node18', 0, ) }) diff --git a/system-tests/test-binary/node_versions_spec.ts b/system-tests/test-binary/node_versions_spec.ts index 9a23707f4ffe..f19448b2595c 100644 --- a/system-tests/test-binary/node_versions_spec.ts +++ b/system-tests/test-binary/node_versions_spec.ts @@ -26,15 +26,17 @@ function smokeTestDockerImage (dockerImage: string) { describe('binary node versions', () => { [ - 'cypress/base:18.15.0', - 'cypress/base:20.5.0', + 'cypress/base:18.16.1', + 'cypress/base:20.12.2', + 'cypress/base:22.0.0', ].forEach(smokeTestDockerImage) }) describe('type: module', () => { [ - 'cypress/base:18.15.0', - 'cypress/base:20.5.0', + 'cypress/base:18.16.1', + 'cypress/base:20.12.2', + 'cypress/base:22.0.0', ].forEach((dockerImage) => { systemTests.it(`can run in ${dockerImage}`, { withBinary: true,