[ci] Rename scripts/circleci to scripts/ci
ghstack-source-id: 5d9cb7d3dbd0f5c54856ad194517524f14cf1ccb Pull Request resolved: https://github.com/facebook/react/pull/30507
Lauren Tan committed
Jul 29, 2024 at 18:51 UTC
e415b224946b10b795883605d20549406d3c1c4e
8 files changed
+9
-9
.github/workflows/devtools_regression_tests.yml
+4
-4
@@ -69,7 +69,7 @@ jobs:
69
with:
70
name: build
71
path: build
72
- - run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
72
+ - run: ./scripts/ci/pack_and_store_devtools_artifacts.sh
73
env:
74
RELEASE_CHANNEL: experimental
75
- name: Display structure of build
@@ -122,7 +122,7 @@ jobs:
122
uses: actions/download-artifact@v4
123
- name: Display structure of build
124
run: ls -R build
125
- - run: ./scripts/circleci/download_devtools_regression_build.js ${{ matrix.version }} --replaceBuild
125
+ - run: ./scripts/ci/download_devtools_regression_build.js ${{ matrix.version }} --replaceBuild
126
- run: node ./scripts/jest/jest-cli.js --build --project devtools --release-channel=experimental --reactVersion ${{ matrix.version }} --ci=github
127
128
run_devtools_e2e_tests_for_versions:
@@ -160,9 +160,9 @@ jobs:
160
run: |
161
npx playwright install
162
sudo npx playwright install-deps
163
- - run: ./scripts/circleci/download_devtools_regression_build.js ${{ matrix.version }}
163
+ - run: ./scripts/ci/download_devtools_regression_build.js ${{ matrix.version }}
164
- run: ls -R build-regression
165
- - run: ./scripts/circleci/run_devtools_e2e_tests.js ${{ matrix.version }}
165
+ - run: ./scripts/ci/run_devtools_e2e_tests.js ${{ matrix.version }}
166
env:
167
RELEASE_CHANNEL: experimental
168
- name: Cleanup build regression folder
.github/workflows/runtime_build_and_test.yml
+2
-2
@@ -472,7 +472,7 @@ jobs:
472
pattern: _build_*
473
path: build
474
merge-multiple: true
475
- - run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
475
+ - run: ./scripts/ci/pack_and_store_devtools_artifacts.sh
476
env:
477
RELEASE_CHANNEL: experimental
478
- name: Display structure of build
@@ -521,7 +521,7 @@ jobs:
521
- run: |
522
npx playwright install
523
sudo npx playwright install-deps
524
- - run: ./scripts/circleci/run_devtools_e2e_tests.js
524
+ - run: ./scripts/ci/run_devtools_e2e_tests.js
525
env:
526
RELEASE_CHANNEL: experimental
527
.github/workflows/shared_lint.yml
+2
-2
@@ -63,7 +63,7 @@ jobs:
63
path: "**/node_modules"
64
key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
65
- run: yarn install --frozen-lockfile
66
- - run: ./scripts/circleci/check_license.sh
66
+ - run: ./scripts/ci/check_license.sh
67
68
test_print_warnings:
69
name: Test print warnings
@@ -81,4 +81,4 @@ jobs:
81
path: "**/node_modules"
82
key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
83
- run: yarn install --frozen-lockfile
84
- - run: ./scripts/circleci/test_print_warnings.sh
84
+ - run: ./scripts/ci/test_print_warnings.sh
scripts/ci/check_license.sh
renamed
+1
-1
@@ -3,7 +3,7 @@
3
set -e
4
5
# Make sure we don't introduce accidental references to PATENTS.
6
-EXPECTED='scripts/circleci/check_license.sh'
6
+EXPECTED='scripts/ci/check_license.sh'
7
ACTUAL=$(git grep -l PATENTS)
8
9
if [ "$EXPECTED" != "$ACTUAL" ]; then