mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 00:20:04 +01:00
[ci] Rename scripts/circleci to scripts/ci
ghstack-source-id: 5d9cb7d3dbd0f5c54856ad194517524f14cf1ccb Pull Request resolved: https://github.com/facebook/react/pull/30507
This commit is contained in:
parent
70885cfebe
commit
e415b22494
|
|
@ -69,7 +69,7 @@ jobs:
|
|||
with:
|
||||
name: build
|
||||
path: build
|
||||
- run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
|
||||
- run: ./scripts/ci/pack_and_store_devtools_artifacts.sh
|
||||
env:
|
||||
RELEASE_CHANNEL: experimental
|
||||
- name: Display structure of build
|
||||
|
|
@ -122,7 +122,7 @@ jobs:
|
|||
uses: actions/download-artifact@v4
|
||||
- name: Display structure of build
|
||||
run: ls -R build
|
||||
- run: ./scripts/circleci/download_devtools_regression_build.js ${{ matrix.version }} --replaceBuild
|
||||
- run: ./scripts/ci/download_devtools_regression_build.js ${{ matrix.version }} --replaceBuild
|
||||
- run: node ./scripts/jest/jest-cli.js --build --project devtools --release-channel=experimental --reactVersion ${{ matrix.version }} --ci=github
|
||||
|
||||
run_devtools_e2e_tests_for_versions:
|
||||
|
|
@ -160,9 +160,9 @@ jobs:
|
|||
run: |
|
||||
npx playwright install
|
||||
sudo npx playwright install-deps
|
||||
- run: ./scripts/circleci/download_devtools_regression_build.js ${{ matrix.version }}
|
||||
- run: ./scripts/ci/download_devtools_regression_build.js ${{ matrix.version }}
|
||||
- run: ls -R build-regression
|
||||
- run: ./scripts/circleci/run_devtools_e2e_tests.js ${{ matrix.version }}
|
||||
- run: ./scripts/ci/run_devtools_e2e_tests.js ${{ matrix.version }}
|
||||
env:
|
||||
RELEASE_CHANNEL: experimental
|
||||
- name: Cleanup build regression folder
|
||||
|
|
|
|||
4
.github/workflows/runtime_build_and_test.yml
vendored
4
.github/workflows/runtime_build_and_test.yml
vendored
|
|
@ -472,7 +472,7 @@ jobs:
|
|||
pattern: _build_*
|
||||
path: build
|
||||
merge-multiple: true
|
||||
- run: ./scripts/circleci/pack_and_store_devtools_artifacts.sh
|
||||
- run: ./scripts/ci/pack_and_store_devtools_artifacts.sh
|
||||
env:
|
||||
RELEASE_CHANNEL: experimental
|
||||
- name: Display structure of build
|
||||
|
|
@ -521,7 +521,7 @@ jobs:
|
|||
- run: |
|
||||
npx playwright install
|
||||
sudo npx playwright install-deps
|
||||
- run: ./scripts/circleci/run_devtools_e2e_tests.js
|
||||
- run: ./scripts/ci/run_devtools_e2e_tests.js
|
||||
env:
|
||||
RELEASE_CHANNEL: experimental
|
||||
|
||||
|
|
|
|||
4
.github/workflows/shared_lint.yml
vendored
4
.github/workflows/shared_lint.yml
vendored
|
|
@ -63,7 +63,7 @@ jobs:
|
|||
path: "**/node_modules"
|
||||
key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
|
||||
- run: yarn install --frozen-lockfile
|
||||
- run: ./scripts/circleci/check_license.sh
|
||||
- run: ./scripts/ci/check_license.sh
|
||||
|
||||
test_print_warnings:
|
||||
name: Test print warnings
|
||||
|
|
@ -81,4 +81,4 @@ jobs:
|
|||
path: "**/node_modules"
|
||||
key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
|
||||
- run: yarn install --frozen-lockfile
|
||||
- run: ./scripts/circleci/test_print_warnings.sh
|
||||
- run: ./scripts/ci/test_print_warnings.sh
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
set -e
|
||||
|
||||
# Make sure we don't introduce accidental references to PATENTS.
|
||||
EXPECTED='scripts/circleci/check_license.sh'
|
||||
EXPECTED='scripts/ci/check_license.sh'
|
||||
ACTUAL=$(git grep -l PATENTS)
|
||||
|
||||
if [ "$EXPECTED" != "$ACTUAL" ]; then
|
||||
Loading…
Reference in New Issue
Block a user