From c4c27d29515368060b590cb3e3a081d3e2f04158 Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 16 Jul 2024 13:20:45 -0400 Subject: [PATCH] [ci] Remove run_fixtures_flight_tests from circleci ghstack-source-id: 910ff4de78716e8fd34b090c03d1deb2255c33aa Pull Request resolved: https://github.com/facebook/react/pull/30357 --- .circleci/config.yml | 49 -------------------------------------------- 1 file changed, 49 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0a65b1263bf6f..f5c622b9efdfd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -222,52 +222,6 @@ jobs: RELEASE_CHANNEL: experimental command: ./scripts/circleci/run_devtools_e2e_tests.js - run_fixtures_flight_tests: - docker: *docker - environment: *environment - steps: - - checkout - - attach_workspace: - at: . - # Fixture copies some built packages from the workroot after install. - # That means dependencies of the built packages are not installed. - # We need to install dependencies of the workroot to fulfill all dependency constraints - - setup_node_modules - - restore_cache: - name: Restore yarn cache of fixture - keys: - - v2-yarn_cache_fixtures_flight-{{ arch }}-{{ checksum "yarn.lock" }} - - run: - name: Install fixture dependencies - working_directory: fixtures/flight - command: | - yarn install --frozen-lockfile --cache-folder ~/.cache/yarn - if [ $? -ne 0 ]; then - yarn install --frozen-lockfile --cache-folder ~/.cache/yarn - fi - - save_cache: - name: Save yarn cache of fixture - key: v2-yarn_cache_fixtures_flight-{{ arch }}-{{ checksum "yarn.lock" }} - paths: - - ~/.cache/yarn - - run: - working_directory: fixtures/flight - name: Playwright install deps - command: | - npx playwright install - sudo npx playwright install-deps - - run: - name: Run tests - working_directory: fixtures/flight - command: yarn test - environment: - # Otherwise the webserver is a blackbox - DEBUG: pw:webserver - - store_artifacts: - path: fixtures/flight/playwright-report - - store_artifacts: - path: fixtures/flight/test-results - run_devtools_tests_for_versions: docker: *docker environment: *environment @@ -390,9 +344,6 @@ workflows: - RELEASE_CHANNEL_stable_yarn_test_dom_fixtures: requires: - yarn_build - - run_fixtures_flight_tests: - requires: - - yarn_build devtools_regression_tests: unless: << pipeline.parameters.prerelease_commit_sha >>