diff --git a/.github/workflows/devtools_regression_tests.yml b/.github/workflows/devtools_regression_tests.yml index 48c1ca35b36bd..f2fe1bfc97a00 100644 --- a/.github/workflows/devtools_regression_tests.yml +++ b/.github/workflows/devtools_regression_tests.yml @@ -67,7 +67,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 @@ -120,7 +120,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: @@ -158,9 +158,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 diff --git a/.github/workflows/runtime_build_and_test.yml b/.github/workflows/runtime_build_and_test.yml index 42e44542523c3..952969ebd198b 100644 --- a/.github/workflows/runtime_build_and_test.yml +++ b/.github/workflows/runtime_build_and_test.yml @@ -470,7 +470,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 @@ -519,7 +519,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 diff --git a/.github/workflows/shared_lint.yml b/.github/workflows/shared_lint.yml index e06637b168bf9..d395129620503 100644 --- a/.github/workflows/shared_lint.yml +++ b/.github/workflows/shared_lint.yml @@ -61,7 +61,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 @@ -79,4 +79,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 diff --git a/scripts/circleci/check_license.sh b/scripts/ci/check_license.sh similarity index 85% rename from scripts/circleci/check_license.sh rename to scripts/ci/check_license.sh index 68b41d6ac441b..697f390b096a6 100755 --- a/scripts/circleci/check_license.sh +++ b/scripts/ci/check_license.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 diff --git a/scripts/circleci/download_devtools_regression_build.js b/scripts/ci/download_devtools_regression_build.js similarity index 100% rename from scripts/circleci/download_devtools_regression_build.js rename to scripts/ci/download_devtools_regression_build.js diff --git a/scripts/circleci/pack_and_store_devtools_artifacts.sh b/scripts/ci/pack_and_store_devtools_artifacts.sh similarity index 100% rename from scripts/circleci/pack_and_store_devtools_artifacts.sh rename to scripts/ci/pack_and_store_devtools_artifacts.sh diff --git a/scripts/circleci/run_devtools_e2e_tests.js b/scripts/ci/run_devtools_e2e_tests.js similarity index 100% rename from scripts/circleci/run_devtools_e2e_tests.js rename to scripts/ci/run_devtools_e2e_tests.js diff --git a/scripts/circleci/test_print_warnings.sh b/scripts/ci/test_print_warnings.sh similarity index 100% rename from scripts/circleci/test_print_warnings.sh rename to scripts/ci/test_print_warnings.sh