Skip to content

Commit 5456193

Browse files
committed
ci: add missing curl due to upstream changes
1 parent 3797d4d commit 5456193

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.circleci/config.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -568,19 +568,21 @@ jobs:
568568
- e2e-test:
569569
test_path: e2e-tests/development-runtime
570570

571-
e2e_tests_production_runtime_with_react_18:
571+
e2e_tests_development_runtime_with_react_19:
572572
parameters:
573573
node_version:
574574
type: string
575575
e2e_executor_suffix:
576576
type: string
577577
executor: e2e<< parameters.e2e_executor_suffix >>
578578
steps:
579+
# We use curl in this test suite but it isn't available in all images we use
580+
- run: apt-get update && apt-get install -y curl
579581
- e2e-test:
580-
test_path: e2e-tests/production-runtime
581-
test_command: yarn test && yarn test:offline
582+
test_path: e2e-tests/development-runtime
583+
react_version: "19.1.1"
582584

583-
e2e_tests_development_runtime_with_react_19:
585+
e2e_tests_production_runtime_with_react_18:
584586
parameters:
585587
node_version:
586588
type: string
@@ -589,8 +591,8 @@ jobs:
589591
executor: e2e<< parameters.e2e_executor_suffix >>
590592
steps:
591593
- e2e-test:
592-
test_path: e2e-tests/development-runtime
593-
react_version: "19.1.1"
594+
test_path: e2e-tests/production-runtime
595+
test_command: yarn test && yarn test:offline
594596

595597
e2e_tests_production_runtime_with_react_19:
596598
parameters:

0 commit comments

Comments
 (0)