@samitouri / QOS-React-1 / commits / 34a788907b

[ci] Remove run_fixtures_flight_tests from circleci

ghstack-source-id: f907271b9575777d79ec929c181e18df12bd7589 Pull Request resolved: https://github.com/facebook/react/pull/30357

Lauren Tan committed Jul 16, 2024 at 14:35 UTC 34a788907bab504462c449c5e6da96b9016243b2
1 file changed -49
.circleci/config.yml
-49
@@ -222,52 +222,6 @@ jobs:
222 RELEASE_CHANNEL: experimental
223 command: ./scripts/circleci/run_devtools_e2e_tests.js
224
225 - run_fixtures_flight_tests:
226 - docker: *docker
227 - environment: *environment
228 - steps:
229 - - checkout
230 - - attach_workspace:
231 - at: .
232 - # Fixture copies some built packages from the workroot after install.
233 - # That means dependencies of the built packages are not installed.
234 - # We need to install dependencies of the workroot to fulfill all dependency constraints
235 - - setup_node_modules
236 - - restore_cache:
237 - name: Restore yarn cache of fixture
238 - keys:
239 - - v2-yarn_cache_fixtures_flight-{{ arch }}-{{ checksum "yarn.lock" }}
240 - - run:
241 - name: Install fixture dependencies
242 - working_directory: fixtures/flight
243 - command: |
244 - yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
245 - if [ $? -ne 0 ]; then
246 - yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
247 - fi
248 - - save_cache:
249 - name: Save yarn cache of fixture
250 - key: v2-yarn_cache_fixtures_flight-{{ arch }}-{{ checksum "yarn.lock" }}
251 - paths:
252 - - ~/.cache/yarn
253 - - run:
254 - working_directory: fixtures/flight
255 - name: Playwright install deps
256 - command: |
257 - npx playwright install
258 - sudo npx playwright install-deps
259 - - run:
260 - name: Run tests
261 - working_directory: fixtures/flight
262 - command: yarn test
263 - environment:
264 - # Otherwise the webserver is a blackbox
265 - DEBUG: pw:webserver
266 - - store_artifacts:
267 - path: fixtures/flight/playwright-report
268 - - store_artifacts:
269 - path: fixtures/flight/test-results
270 -
225 run_devtools_tests_for_versions:
226 docker: *docker
227 environment: *environment
@@ -390,9 +344,6 @@ workflows:
344 - RELEASE_CHANNEL_stable_yarn_test_dom_fixtures:
345 requires:
346 - yarn_build
393 - - run_fixtures_flight_tests:
394 - requires:
395 - - yarn_build
347
348 devtools_regression_tests:
349 unless: << pipeline.parameters.prerelease_commit_sha >>