[ci] Remove sizebot from circleci
Now that the job is migrated to GH, we can remove this from circleci. Note that sizebot still comments on this PR. ghstack-source-id: 337661e3b00d3d3686a539bf0877d8526b0f15b9 Pull Request resolved: https://github.com/facebook/react/pull/30387
Lauren Tan committed
Jul 18, 2024 at 16:19 UTC
7af570c3d9d61ae57c9f974998324cfa22a615e0
1 file changed
-55
.circleci/config.yml
-55
@@ -97,33 +97,6 @@ jobs:
97
paths:
98
- build
99
100
- download_base_build_for_sizebot:
101
- docker: *docker
102
- environment: *environment
103
- steps:
104
- - checkout
105
- - setup_node_modules
106
- - run:
107
- name: Download artifacts for base revision
108
- command: |
109
- git fetch origin main
110
- cd ./scripts/release && yarn && cd ../../
111
- scripts/release/download-experimental-build.js --commit=$(git merge-base HEAD origin/main) --allowBrokenCI
112
- mv ./build ./base-build
113
-
114
- - run:
115
- # TODO: The `download-experimental-build` script copies the npm
116
- # packages into the `node_modules` directory. This is a historical
117
- # quirk of how the release script works. Let's pretend they
118
- # don't exist.
119
- name: Delete extraneous files
120
- command: rm -rf ./base-build/node_modules
121
-
122
- - persist_to_workspace:
123
- root: .
124
- paths:
125
- - base-build
126
-
100
process_artifacts_combined:
101
docker: *docker
102
environment: *environment
@@ -142,20 +115,6 @@ jobs:
115
- store_artifacts:
116
path: ./build.tgz
117
145
- sizebot:
146
- docker: *docker
147
- environment: *environment
148
- steps:
149
- - checkout
150
- - attach_workspace:
151
- at: .
152
- - run: echo "<< pipeline.git.revision >>" >> build/COMMIT_SHA
153
- - setup_node_modules
154
- - run:
155
- command: node ./scripts/tasks/danger
156
- - store_artifacts:
157
- path: sizebot-message.md
158
-
118
build_devtools_and_process_artifacts:
119
docker: *docker
120
environment: *environment
@@ -280,20 +239,6 @@ workflows:
239
requires:
240
- scrape_warning_messages
241
- yarn_build
283
- - download_base_build_for_sizebot:
284
- filters:
285
- branches:
286
- ignore:
287
- - main
288
- - builds/facebook-www
289
- - sizebot:
290
- filters:
291
- branches:
292
- ignore:
293
- - main
294
- requires:
295
- - download_base_build_for_sizebot
296
- - yarn_build
242
243
devtools_regression_tests:
244
unless: << pipeline.parameters.prerelease_commit_sha >>