Skip to content

Commit e415b22

Browse files
committed
[ci] Rename scripts/circleci to scripts/ci
ghstack-source-id: 5d9cb7d3dbd0f5c54856ad194517524f14cf1ccb Pull Request resolved: #30507
1 parent 70885cf commit e415b22

8 files changed

+9
-9
lines changed

.github/workflows/devtools_regression_tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
name: build
7171
path: build
72-
- run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
72+
- run: ./scripts/ci/pack_and_store_devtools_artifacts.sh
7373
env:
7474
RELEASE_CHANNEL: experimental
7575
- name: Display structure of build
@@ -122,7 +122,7 @@ jobs:
122122
uses: actions/download-artifact@v4
123123
- name: Display structure of build
124124
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
126126
- run: node ./scripts/jest/jest-cli.js --build --project devtools --release-channel=experimental --reactVersion ${{ matrix.version }} --ci=github
127127

128128
run_devtools_e2e_tests_for_versions:
@@ -160,9 +160,9 @@ jobs:
160160
run: |
161161
npx playwright install
162162
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 }}
164164
- 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 }}
166166
env:
167167
RELEASE_CHANNEL: experimental
168168
- name: Cleanup build regression folder

.github/workflows/runtime_build_and_test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ jobs:
472472
pattern: _build_*
473473
path: build
474474
merge-multiple: true
475-
- run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
475+
- run: ./scripts/ci/pack_and_store_devtools_artifacts.sh
476476
env:
477477
RELEASE_CHANNEL: experimental
478478
- name: Display structure of build
@@ -521,7 +521,7 @@ jobs:
521521
- run: |
522522
npx playwright install
523523
sudo npx playwright install-deps
524-
- run: ./scripts/circleci/run_devtools_e2e_tests.js
524+
- run: ./scripts/ci/run_devtools_e2e_tests.js
525525
env:
526526
RELEASE_CHANNEL: experimental
527527

.github/workflows/shared_lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
path: "**/node_modules"
6464
key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
6565
- run: yarn install --frozen-lockfile
66-
- run: ./scripts/circleci/check_license.sh
66+
- run: ./scripts/ci/check_license.sh
6767

6868
test_print_warnings:
6969
name: Test print warnings
@@ -81,4 +81,4 @@ jobs:
8181
path: "**/node_modules"
8282
key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
8383
- run: yarn install --frozen-lockfile
84-
- run: ./scripts/circleci/test_print_warnings.sh
84+
- run: ./scripts/ci/test_print_warnings.sh

scripts/circleci/check_license.sh renamed to scripts/ci/check_license.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
# Make sure we don't introduce accidental references to PATENTS.
6-
EXPECTED='scripts/circleci/check_license.sh'
6+
EXPECTED='scripts/ci/check_license.sh'
77
ACTUAL=$(git grep -l PATENTS)
88

99
if [ "$EXPECTED" != "$ACTUAL" ]; then

0 commit comments

Comments
 (0)