2025-03-21T20:24:24.5046117Z Current runner version: '2.323.0' 2025-03-21T20:24:24.5053991Z Runner name: 'i-0e1b23732c78ae632' 2025-03-21T20:24:24.5054998Z Runner group name: 'Default' 2025-03-21T20:24:24.5056034Z Machine name: 'ip-10-0-63-213' 2025-03-21T20:24:24.5059314Z ##[group]GITHUB_TOKEN Permissions 2025-03-21T20:24:24.5062393Z Contents: write 2025-03-21T20:24:24.5063135Z Metadata: read 2025-03-21T20:24:24.5063825Z ##[endgroup] 2025-03-21T20:24:24.5067489Z Secret source: Actions 2025-03-21T20:24:24.5068425Z Prepare workflow directory 2025-03-21T20:24:24.8477709Z Prepare all required actions 2025-03-21T20:24:24.8523353Z Getting action download info 2025-03-21T20:24:25.0950436Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-03-21T20:24:25.3621094Z Download action repository 'pytorch/pytorch@main' (SHA:c5deacc27a4a29fa141e179535d56d21a0eb734f) 2025-03-21T20:24:38.2285212Z Download action repository 'actions/download-artifact@v4' (SHA:95815c38cf2ff2164869cbab79da8d1f422bc89e) 2025-03-21T20:24:38.5453624Z Download action repository 'pmeier/pytest-results-action@v0.3.0' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-03-21T20:24:38.7061047Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-03-21T20:24:39.0998253Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-03-21T20:24:39.3528499Z Getting action download info 2025-03-21T20:24:39.5572264Z Uses: pytorch/test-infra/.github/workflows/linux_job_v2.yml@refs/heads/main (c1d92bc76c9d8ecf59b36ef10588c9605c8578d1) 2025-03-21T20:24:39.5574674Z ##[group] Inputs 2025-03-21T20:24:39.5577839Z script: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:39.5581681Z timeout: 90 2025-03-21T20:24:39.5581941Z runner: linux.2xlarge 2025-03-21T20:24:39.5582231Z upload-artifact: 2025-03-21T20:24:39.5582829Z upload-artifact-to-s3: false 2025-03-21T20:24:39.5583168Z download-artifact: docs 2025-03-21T20:24:39.5583473Z repository: pytorch/executorch 2025-03-21T20:24:39.5583782Z fetch-depth: 1 2025-03-21T20:24:39.5584037Z submodules: 2025-03-21T20:24:39.5584326Z ref: gh-pages 2025-03-21T20:24:39.5584644Z test-infra-repository: pytorch/test-infra 2025-03-21T20:24:39.5584996Z test-infra-ref: 2025-03-21T20:24:39.5585276Z docker-image: pytorch/almalinux-builder 2025-03-21T20:24:39.5585633Z docker-build-dir: .ci/docker 2025-03-21T20:24:39.5585941Z gpu-arch-type: cpu 2025-03-21T20:24:39.5586212Z gpu-arch-version: 2025-03-21T20:24:39.5586479Z job-name: linux-job 2025-03-21T20:24:39.5586745Z continue-on-error: false 2025-03-21T20:24:39.5587048Z binary-matrix: 2025-03-21T20:24:39.5587341Z run-with-docker: true 2025-03-21T20:24:39.5587614Z secrets-env: 2025-03-21T20:24:39.5587863Z no-sudo: false 2025-03-21T20:24:39.5588121Z ##[endgroup] 2025-03-21T20:24:39.5588414Z Complete job name: upload-gh-pages / linux-job 2025-03-21T20:24:39.6013710Z A job started hook has been configured by the self-hosted runner administrator 2025-03-21T20:24:39.6115514Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-03-21T20:24:39.6124873Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:39.6125795Z ##[endgroup] 2025-03-21T20:24:41.4454205Z Runner Type: linux.2xlarge 2025-03-21T20:24:41.4454637Z Instance Type: c5.2xlarge 2025-03-21T20:24:41.4454994Z AMI Name: unknown 2025-03-21T20:24:41.4480373Z AMI ID: ami-08b5b3a93ed654d19 2025-03-21T20:24:47.3039613Z ##[group]Run set -euxo pipefail 2025-03-21T20:24:47.3040048Z set -euxo pipefail 2025-03-21T20:24:47.3040379Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-03-21T20:24:47.3040791Z  echo "::group::Cleanup with-sudo debug output" 2025-03-21T20:24:47.3041180Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-03-21T20:24:47.3041509Z else 2025-03-21T20:24:47.3041801Z  echo "::group::Cleanup no-sudo debug output" 2025-03-21T20:24:47.3042176Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-03-21T20:24:47.3042490Z fi 2025-03-21T20:24:47.3042706Z  2025-03-21T20:24:47.3042966Z mkdir -p "${GITHUB_WORKSPACE}" 2025-03-21T20:24:47.3043321Z echo "::endgroup::" 2025-03-21T20:24:47.3053604Z shell: /usr/bin/bash -e {0} 2025-03-21T20:24:47.3053919Z env: 2025-03-21T20:24:47.3054193Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:47.3054553Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:47.3054923Z PR_NUMBER: 2025-03-21T20:24:47.3057941Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:47.3061334Z NO_SUDO: false 2025-03-21T20:24:47.3061597Z ##[endgroup] 2025-03-21T20:24:47.3089559Z + [[ false == \f\a\l\s\e ]] 2025-03-21T20:24:47.3100548Z + echo '::group::Cleanup with-sudo debug output' 2025-03-21T20:24:47.3101057Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-03-21T20:24:47.3107678Z ##[group]Cleanup with-sudo debug output 2025-03-21T20:24:47.4218318Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/branches' 2025-03-21T20:24:47.4219384Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/applypatch-msg.sample' 2025-03-21T20:24:47.4220281Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/commit-msg.sample' 2025-03-21T20:24:47.4221180Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/post-update.sample' 2025-03-21T20:24:47.4222531Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/pre-applypatch.sample' 2025-03-21T20:24:47.4223542Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/pre-commit.sample' 2025-03-21T20:24:47.4224429Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/pre-merge-commit.sample' 2025-03-21T20:24:47.4225293Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/pre-push.sample' 2025-03-21T20:24:47.4226221Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/pre-receive.sample' 2025-03-21T20:24:47.4227673Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/push-to-checkout.sample' 2025-03-21T20:24:47.4228604Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/sendemail-validate.sample' 2025-03-21T20:24:47.4230189Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/update.sample' 2025-03-21T20:24:47.4231253Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/fsmonitor-watchman.sample' 2025-03-21T20:24:47.4232139Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/pre-rebase.sample' 2025-03-21T20:24:47.4233082Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks/prepare-commit-msg.sample' 2025-03-21T20:24:47.4233929Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/hooks' 2025-03-21T20:24:47.4234745Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/info/exclude' 2025-03-21T20:24:47.4235861Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/info' 2025-03-21T20:24:47.4236609Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/description' 2025-03-21T20:24:47.4237325Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/config' 2025-03-21T20:24:47.4238065Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/refs/heads/main' 2025-03-21T20:24:47.4238919Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/refs/heads' 2025-03-21T20:24:47.4239753Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/refs/tags' 2025-03-21T20:24:47.4240573Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/refs/remotes/origin/main' 2025-03-21T20:24:47.4241694Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/refs/remotes/origin' 2025-03-21T20:24:47.4242571Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/refs/remotes' 2025-03-21T20:24:47.4243374Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/refs' 2025-03-21T20:24:47.4244100Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/HEAD' 2025-03-21T20:24:47.4245024Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/objects/pack/pack-ccb83c317a305ff545d1f7d4a4210d9105b9f2fc.pack' 2025-03-21T20:24:47.4246203Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/objects/pack/pack-ccb83c317a305ff545d1f7d4a4210d9105b9f2fc.rev' 2025-03-21T20:24:47.4247365Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/objects/pack/pack-ccb83c317a305ff545d1f7d4a4210d9105b9f2fc.idx' 2025-03-21T20:24:47.4248353Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/objects/pack' 2025-03-21T20:24:47.4249171Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/objects/info' 2025-03-21T20:24:47.4249981Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/objects' 2025-03-21T20:24:47.4250742Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/FETCH_HEAD' 2025-03-21T20:24:47.4251446Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/shallow' 2025-03-21T20:24:47.4252239Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs/refs/remotes/origin/main' 2025-03-21T20:24:47.4253140Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs/refs/remotes/origin' 2025-03-21T20:24:47.4254032Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs/refs/remotes' 2025-03-21T20:24:47.4254872Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs/refs/heads/main' 2025-03-21T20:24:47.4255831Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs/refs/heads' 2025-03-21T20:24:47.4256653Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs/refs' 2025-03-21T20:24:47.4257478Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs/HEAD' 2025-03-21T20:24:47.4258218Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/logs' 2025-03-21T20:24:47.4259095Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/config.worktree' 2025-03-21T20:24:47.4259834Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/index' 2025-03-21T20:24:47.4260545Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git' 2025-03-21T20:24:47.4261567Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.flake8' 2025-03-21T20:24:47.4262298Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git-blame-ignore-revs' 2025-03-21T20:24:47.4263060Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.gitattributes' 2025-03-21T20:24:47.4263834Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actionlint.yaml' 2025-03-21T20:24:47.4265098Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/bc-lint/action.yml' 2025-03-21T20:24:47.4266005Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/bc-lint' 2025-03-21T20:24:47.4266908Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/binary-upload/action.yml' 2025-03-21T20:24:47.4268215Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/binary-upload' 2025-03-21T20:24:47.4269262Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/calculate-docker-image/action.yml' 2025-03-21T20:24:47.4270279Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/calculate-docker-image' 2025-03-21T20:24:47.4271709Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/check-disk-space/action.yml' 2025-03-21T20:24:47.4272669Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/check-disk-space' 2025-03-21T20:24:47.4273621Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/chown-directory/action.yml' 2025-03-21T20:24:47.4274664Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/chown-directory' 2025-03-21T20:24:47.4275625Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/clang-tidy-upload/action.yml' 2025-03-21T20:24:47.4276582Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/clang-tidy-upload' 2025-03-21T20:24:47.4277543Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/cleanup-runner/action.yml' 2025-03-21T20:24:47.4278549Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/cleanup-runner' 2025-03-21T20:24:47.4279527Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/export-matrix-variables/action.yml' 2025-03-21T20:24:47.4280548Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/export-matrix-variables' 2025-03-21T20:24:47.4281607Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/get-workflow-job-id/action.yml' 2025-03-21T20:24:47.4282590Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/get-workflow-job-id' 2025-03-21T20:24:47.4283822Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/pull-docker-image/action.yml' 2025-03-21T20:24:47.4284885Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/pull-docker-image' 2025-03-21T20:24:47.4285878Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/run-script-with-cache/action.yml' 2025-03-21T20:24:47.4286946Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/run-script-with-cache' 2025-03-21T20:24:47.4287933Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/set-channel/action.yml' 2025-03-21T20:24:47.4288854Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/set-channel' 2025-03-21T20:24:47.4289801Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-binary-builds/action.yml' 2025-03-21T20:24:47.4290786Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-binary-builds' 2025-03-21T20:24:47.4291779Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-binary-upload/action.yml' 2025-03-21T20:24:47.4292760Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-binary-upload' 2025-03-21T20:24:47.4293718Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-build-test/action.yml' 2025-03-21T20:24:47.4294687Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-build-test' 2025-03-21T20:24:47.4295631Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-linux/action.yml' 2025-03-21T20:24:47.4296546Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-linux' 2025-03-21T20:24:47.4297480Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-miniconda/README.md' 2025-03-21T20:24:47.4298440Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-miniconda/action.yml' 2025-03-21T20:24:47.4299491Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-miniconda' 2025-03-21T20:24:47.4300438Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-nvidia/action.yml' 2025-03-21T20:24:47.4301371Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-nvidia' 2025-03-21T20:24:47.4302283Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-ssh/action.yml' 2025-03-21T20:24:47.4303189Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-ssh/index.js' 2025-03-21T20:24:47.4304088Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-ssh' 2025-03-21T20:24:47.4305006Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-windows/action.yml' 2025-03-21T20:24:47.4305930Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/setup-windows' 2025-03-21T20:24:47.4306874Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/teardown-linux/action.yml' 2025-03-21T20:24:47.4307818Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/teardown-linux' 2025-03-21T20:24:47.4308775Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/teardown-windows/action.yml' 2025-03-21T20:24:47.4309861Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/teardown-windows' 2025-03-21T20:24:47.4310890Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/trigger-nightly/action.yml' 2025-03-21T20:24:47.4311917Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/trigger-nightly' 2025-03-21T20:24:47.4312916Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/update-commit-hash/action.yml' 2025-03-21T20:24:47.4313898Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/update-commit-hash' 2025-03-21T20:24:47.4314888Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/update-viablestrict/action.yml' 2025-03-21T20:24:47.4315944Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/update-viablestrict' 2025-03-21T20:24:47.4316960Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/upload-benchmark-results/action.yml' 2025-03-21T20:24:47.4318000Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions/upload-benchmark-results' 2025-03-21T20:24:47.4318974Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/actions' 2025-03-21T20:24:47.4319788Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/arc-node-config.yaml' 2025-03-21T20:24:47.4320641Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/arc-runner-config.yaml' 2025-03-21T20:24:47.4321575Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/canary-scale-config.yml' 2025-03-21T20:24:47.4322420Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/dependabot.yml' 2025-03-21T20:24:47.4323270Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/lf-canary-scale-config.yml' 2025-03-21T20:24:47.4324133Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/lf-scale-config.yml' 2025-03-21T20:24:47.4325019Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scale-config.yml' 2025-03-21T20:24:47.4326094Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v2/android-artifacts-31017223108.json' 2025-03-21T20:24:47.4327450Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v2/android-artifacts-31017223431.json' 2025-03-21T20:24:47.4328742Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v2' 2025-03-21T20:24:47.4329924Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v3/add_loop_eager.json' 2025-03-21T20:24:47.4331247Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v3/add_loop_eager_dynamic.json' 2025-03-21T20:24:47.4332562Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v3/add_loop_inductor_dynamic_gpu.json' 2025-03-21T20:24:47.4333839Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v3/json-each-row.json' 2025-03-21T20:24:47.4335074Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v3/mock.json' 2025-03-21T20:24:47.4336213Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing/v3' 2025-03-21T20:24:47.4337421Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmark-results-dir-for-testing' 2025-03-21T20:24:47.4338673Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmarks/gather_metadata.py' 2025-03-21T20:24:47.4339632Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/benchmarks' 2025-03-21T20:24:47.4340575Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/export_matrix_variables.py' 2025-03-21T20:24:47.4341525Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/get_tutorials_stats.py' 2025-03-21T20:24:47.4342456Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/get_workflow_job_id.py' 2025-03-21T20:24:47.4343352Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/install_torch.sh' 2025-03-21T20:24:47.4344216Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/install_xpu.bat' 2025-03-21T20:24:47.4345121Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_clickhouse_format.sh' 2025-03-21T20:24:47.4346052Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py' 2025-03-21T20:24:47.4347005Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/test_update_disabled_issues.py' 2025-03-21T20:24:47.4347959Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/update_commit_hashes.py' 2025-03-21T20:24:47.4348890Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/update_disabled_issues.py' 2025-03-21T20:24:47.4349841Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/upload_benchmark_results.py' 2025-03-21T20:24:47.4350767Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/validate_binaries.sh' 2025-03-21T20:24:47.4351659Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/validate_pipy.sh' 2025-03-21T20:24:47.4352539Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/validate_poetry.sh' 2025-03-21T20:24:47.4353449Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/validate_scale_config.py' 2025-03-21T20:24:47.4354370Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/validate_test_ops.sh' 2025-03-21T20:24:47.4355265Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/xpu_env_helper.bat' 2025-03-21T20:24:47.4356119Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts' 2025-03-21T20:24:47.4356965Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/_binary_upload.yml' 2025-03-21T20:24:47.4357862Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/_upload_docs.yml' 2025-03-21T20:24:47.4358857Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/backfill-workflow-job.yml' 2025-03-21T20:24:47.4359809Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/build-windows-ami.yml' 2025-03-21T20:24:47.4360979Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/build_conda_linux.yml' 2025-03-21T20:24:47.4361915Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/build_conda_macos.yml' 2025-03-21T20:24:47.4362855Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/build_conda_windows.yml' 2025-03-21T20:24:47.4363949Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/build_wheels_linux.yml' 2025-03-21T20:24:47.4365061Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/build_wheels_macos.yml' 2025-03-21T20:24:47.4366011Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/build_wheels_windows.yml' 2025-03-21T20:24:47.4366932Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/check-alerts.yml' 2025-03-21T20:24:47.4367843Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/clang-tidy-linux.yml' 2025-03-21T20:24:47.4368776Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/clang-tidy-macos.yml' 2025-03-21T20:24:47.4369799Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/clickhouse-replicator-dynamo-lambda.yml' 2025-03-21T20:24:47.4370888Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/clickhouse-replicator-s3-lambda.yml' 2025-03-21T20:24:47.4371981Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/deploy_lambda_whl_metadata_upload_pep658.yml' 2025-03-21T20:24:47.4373017Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/disable-flaky-tests.yml' 2025-03-21T20:24:47.4373997Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/generate_binary_build_matrix.yml' 2025-03-21T20:24:47.4375027Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/generate_docker_release_matrix.yml' 2025-03-21T20:24:47.4376028Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/generate_release_matrix.yml' 2025-03-21T20:24:47.4377000Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/gha-artifacts-lambda.yml' 2025-03-21T20:24:47.4377994Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/github-status-test-lambda.yml' 2025-03-21T20:24:47.4379080Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/lambda-do-release-runners.yml' 2025-03-21T20:24:47.4380092Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/lambda-release-tag-runners.yml' 2025-03-21T20:24:47.4381129Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/lambda-runner-binaries-syncer.yml' 2025-03-21T20:24:47.4382177Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/lambda-runners.yml' 2025-03-21T20:24:47.4383090Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/lambda-webhook.yml' 2025-03-21T20:24:47.4383960Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/lint.yml' 2025-03-21T20:24:47.4384871Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/linux_job.yml' 2025-03-21T20:24:47.4385736Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/linux_job_v2.yml' 2025-03-21T20:24:47.4386663Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/log-classifier-lambda.yml' 2025-03-21T20:24:47.4387631Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/macos_job.yml' 2025-03-21T20:24:47.4388502Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/mobile_job.yml' 2025-03-21T20:24:47.4389447Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/opensearch-gha-jobs-lambda.yml' 2025-03-21T20:24:47.4390535Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/pr-dependencies-check.yml' 2025-03-21T20:24:47.4391946Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/revert-tracker.yml' 2025-03-21T20:24:47.4392893Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/scale_config_validation.yml' 2025-03-21T20:24:47.4393873Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/servicelab-ingestor-lambda.yml' 2025-03-21T20:24:47.4394882Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-binary-size-validation.yml' 2025-03-21T20:24:47.4395911Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-export-matrix-variables.yml' 2025-03-21T20:24:47.4396927Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-setup-miniconda-env-file' 2025-03-21T20:24:47.4398000Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-setup-miniconda-pip-requirements-file' 2025-03-21T20:24:47.4399050Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-setup-miniconda.yml' 2025-03-21T20:24:47.4400001Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-setup-nvidia.yml' 2025-03-21T20:24:47.4400910Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-setup-ssh.yml' 2025-03-21T20:24:47.4401877Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test-validate-domain-library.yml' 2025-03-21T20:24:47.4402963Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_build_wheels_linux_aarch64_without_cuda.yml' 2025-03-21T20:24:47.4404090Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_build_wheels_linux_python_versions.yml' 2025-03-21T20:24:47.4405173Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_build_wheels_linux_with_cuda.yml' 2025-03-21T20:24:47.4406237Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_build_wheels_linux_without_cuda.yml' 2025-03-21T20:24:47.4407251Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_build_wheels_m1.yml' 2025-03-21T20:24:47.4408258Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_build_wheels_windows_with_cuda.yml' 2025-03-21T20:24:47.4409330Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_build_wheels_windows_without_cuda.yml' 2025-03-21T20:24:47.4410338Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_linux_job.yml' 2025-03-21T20:24:47.4411252Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_linux_job_v2.yml' 2025-03-21T20:24:47.4412171Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_macos_job.yml' 2025-03-21T20:24:47.4413132Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_mobile_job.yml' 2025-03-21T20:24:47.4414108Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_upload_benchmark_results.yml' 2025-03-21T20:24:47.4415127Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/test_windows_job.yml' 2025-03-21T20:24:47.4416051Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/tests.yml' 2025-03-21T20:24:47.4416979Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/tflint.yml' 2025-03-21T20:24:47.4417826Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/torchci.yml' 2025-03-21T20:24:47.4418887Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/trigger_nightly.yml' 2025-03-21T20:24:47.4419952Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/trigger_nightly_core.yml' 2025-03-21T20:24:47.4420915Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/update-drci-comments.yml' 2025-03-21T20:24:47.4421887Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/update-queue-times.yml' 2025-03-21T20:24:47.4422819Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/update-s3-html.yml' 2025-03-21T20:24:47.4423747Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/update-test-times.yml' 2025-03-21T20:24:47.4424694Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/update_disabled_tests.yml' 2025-03-21T20:24:47.4425667Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/update_test_file_ratings.yml' 2025-03-21T20:24:47.4426640Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/upload-tutorials-stats.yml' 2025-03-21T20:24:47.4427638Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/usage-log-aggregator-lambda.yml' 2025-03-21T20:24:47.4428680Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-aarch64-linux-binaries.yml' 2025-03-21T20:24:47.4429685Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-binaries.yml' 2025-03-21T20:24:47.4430645Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-docker-images.yml' 2025-03-21T20:24:47.4431625Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-domain-library.yml' 2025-03-21T20:24:47.4432615Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-linux-binaries.yml' 2025-03-21T20:24:47.4433610Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-macos-arm64-binaries.yml' 2025-03-21T20:24:47.4434628Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-nightly-binaries.yml' 2025-03-21T20:24:47.4435671Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-pypi-wheel-binary-size.yml' 2025-03-21T20:24:47.4436711Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-release-binaries.yml' 2025-03-21T20:24:47.4437754Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-repackaged-binary-sizes.yml' 2025-03-21T20:24:47.4438799Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/validate-windows-binaries.yml' 2025-03-21T20:24:47.4439786Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/windows-ami-validation.yml' 2025-03-21T20:24:47.4440720Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows/windows_job.yml' 2025-03-21T20:24:47.4441560Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/workflows' 2025-03-21T20:24:47.4442338Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github' 2025-03-21T20:24:47.4443053Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.gitignore' 2025-03-21T20:24:47.4443874Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.lintrunner.toml' 2025-03-21T20:24:47.4444714Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.mypy_requirements.txt' 2025-03-21T20:24:47.4445444Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.sqlfluff' 2025-03-21T20:24:47.4446163Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/CODE_OF_CONDUCT.md' 2025-03-21T20:24:47.4446907Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/CONTRIBUTING.md' 2025-03-21T20:24:47.4447606Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/LICENSE' 2025-03-21T20:24:47.4448286Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/README.md' 2025-03-21T20:24:47.4449038Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/README.md' 2025-03-21T20:24:47.4449850Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/build.hwm' 2025-03-21T20:24:47.4450674Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/build.pwd' 2025-03-21T20:24:47.4451521Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/build.pwi' 2025-03-21T20:24:47.4453098Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/configs/sshd_config' 2025-03-21T20:24:47.4453991Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/configs' 2025-03-21T20:24:47.4454870Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/plugins.pkr.hcl' 2025-03-21T20:24:47.4455835Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Helpers/Reset-UserData.ps1' 2025-03-21T20:24:47.4456896Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Helpers/Uninstall-WinDefend.ps1' 2025-03-21T20:24:47.4457923Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Helpers' 2025-03-21T20:24:47.4459086Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Initialize-Python3.ps1' 2025-03-21T20:24:47.4460199Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-CUDA-Tools.ps1' 2025-03-21T20:24:47.4461578Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-Choco-GenerateProfile.ps1' 2025-03-21T20:24:47.4462795Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-Conda-Dependencies.ps1' 2025-03-21T20:24:47.4463947Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-Miniconda3.ps1' 2025-03-21T20:24:47.4465095Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-Pip-Dependencies.ps1' 2025-03-21T20:24:47.4466192Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-SSH.ps1' 2025-03-21T20:24:47.4467249Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-Tools.ps1' 2025-03-21T20:24:47.4468300Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers/Install-VS.ps1' 2025-03-21T20:24:47.4469300Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts/Installers' 2025-03-21T20:24:47.4470226Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/scripts' 2025-03-21T20:24:47.4471376Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/user-data-scripts/bootstrap-winrm.ps1' 2025-03-21T20:24:47.4472486Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/user-data-scripts' 2025-03-21T20:24:47.4473423Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/variables.pkr.hcl' 2025-03-21T20:24:47.4474297Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows/windows.pkr.hcl' 2025-03-21T20:24:47.4475142Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami/windows' 2025-03-21T20:24:47.4475920Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/ami' 2025-03-21T20:24:47.4476744Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/ci-queue-pct/.gitignore' 2025-03-21T20:24:47.4477631Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/ci-queue-pct/Makefile' 2025-03-21T20:24:47.4478542Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/ci-queue-pct/ci_queue_pct.py' 2025-03-21T20:24:47.4479434Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/ci-queue-pct/dorun.sh' 2025-03-21T20:24:47.4480347Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/ci-queue-pct/requirements.txt' 2025-03-21T20:24:47.4481261Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/ci-queue-pct' 2025-03-21T20:24:47.4482214Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo/Makefile' 2025-03-21T20:24:47.4483249Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo/README.md' 2025-03-21T20:24:47.4484330Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo/expected_query.sql' 2025-03-21T20:24:47.4485444Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo/lambda_function.py' 2025-03-21T20:24:47.4486560Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo/requirements.txt' 2025-03-21T20:24:47.4487676Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo/sample_workflow_job.json' 2025-03-21T20:24:47.4488836Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo/test_lambda_function.py' 2025-03-21T20:24:47.4489931Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-dynamo' 2025-03-21T20:24:47.4491165Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-s3/Makefile' 2025-03-21T20:24:47.4492416Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-s3/README.md' 2025-03-21T20:24:47.4493456Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-s3/lambda_function.py' 2025-03-21T20:24:47.4494529Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-s3/requirements.txt' 2025-03-21T20:24:47.4495547Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/clickhouse-replicator-s3' 2025-03-21T20:24:47.4496498Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/gha-artifacts/Makefile' 2025-03-21T20:24:47.4497390Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/gha-artifacts/README.md' 2025-03-21T20:24:47.4498450Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/gha-artifacts/lambda_function.py' 2025-03-21T20:24:47.4499572Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/gha-artifacts/requirements.txt' 2025-03-21T20:24:47.4500497Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/gha-artifacts' 2025-03-21T20:24:47.4501410Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/github-status-test/Makefile' 2025-03-21T20:24:47.4502339Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/github-status-test/README.md' 2025-03-21T20:24:47.4503303Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/github-status-test/lambda_function.py' 2025-03-21T20:24:47.4504303Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/github-status-test/requirements.txt' 2025-03-21T20:24:47.4505493Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/github-status-test' 2025-03-21T20:24:47.4506426Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/.gitignore' 2025-03-21T20:24:47.4507489Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/Cargo.lock' 2025-03-21T20:24:47.4508399Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/Cargo.toml' 2025-03-21T20:24:47.4509295Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/README.md' 2025-03-21T20:24:47.4510211Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/data/README.md' 2025-03-21T20:24:47.4511281Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/data/log_classifier_dataset_query_2024-08-14.csv' 2025-03-21T20:24:47.4512359Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/data' 2025-03-21T20:24:47.4513336Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/fixtures/error_log1.txt' 2025-03-21T20:24:47.4514415Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/fixtures/error_log_multiple_matches.txt' 2025-03-21T20:24:47.4515496Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/fixtures/request.json' 2025-03-21T20:24:47.4516483Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/fixtures' 2025-03-21T20:24:47.4517423Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/ruleset.toml' 2025-03-21T20:24:47.4518409Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/scripts/download_logs.py' 2025-03-21T20:24:47.4519497Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/scripts' 2025-03-21T20:24:47.4520888Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/bedrock.rs' 2025-03-21T20:24:47.4522301Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/bedrock/prompts.rs' 2025-03-21T20:24:47.4523314Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/bedrock' 2025-03-21T20:24:47.4524282Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/engine.rs' 2025-03-21T20:24:47.4525187Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/lib.rs' 2025-03-21T20:24:47.4526217Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/log.rs' 2025-03-21T20:24:47.4527201Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/main.rs' 2025-03-21T20:24:47.4528131Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/network.rs' 2025-03-21T20:24:47.4529069Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/rule.rs' 2025-03-21T20:24:47.4530025Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/rule_match.rs' 2025-03-21T20:24:47.4531222Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/snapshots/log_classifier__engine__test__get_snippets_on_log.snap' 2025-03-21T20:24:47.4532740Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/snapshots/log_classifier__engine__test__get_snippets_on_log_with_multiple_matches.snap' 2025-03-21T20:24:47.4534058Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src/snapshots' 2025-03-21T20:24:47.4535041Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier/src' 2025-03-21T20:24:47.4535984Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/log-classifier' 2025-03-21T20:24:47.4536937Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/opensearch-gha-jobs/Makefile' 2025-03-21T20:24:47.4537899Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/opensearch-gha-jobs/README.md' 2025-03-21T20:24:47.4539006Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/opensearch-gha-jobs/lambda_function.py' 2025-03-21T20:24:47.4540052Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/opensearch-gha-jobs/requirements.txt' 2025-03-21T20:24:47.4541102Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/opensearch-gha-jobs/test_lambda_function.py' 2025-03-21T20:24:47.4542134Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/opensearch-gha-jobs' 2025-03-21T20:24:47.4543122Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/oss_ci_job_queue_time/.gitignore' 2025-03-21T20:24:47.4544103Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/oss_ci_job_queue_time/Makefile' 2025-03-21T20:24:47.4545092Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/oss_ci_job_queue_time/lambda_function.py' 2025-03-21T20:24:47.4546147Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/oss_ci_job_queue_time/requirements.txt' 2025-03-21T20:24:47.4547135Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/oss_ci_job_queue_time' 2025-03-21T20:24:47.4548097Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/servicelab-ingestor/Makefile' 2025-03-21T20:24:47.4549024Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/servicelab-ingestor/README.md' 2025-03-21T20:24:47.4550017Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/servicelab-ingestor/lambda_function.py' 2025-03-21T20:24:47.4551041Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/servicelab-ingestor/requirements.txt' 2025-03-21T20:24:47.4552039Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/servicelab-ingestor' 2025-03-21T20:24:47.4553086Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/tests/__init__.py' 2025-03-21T20:24:47.4554105Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/tests/test_lambda_oss_ci_job_queue_time.py' 2025-03-21T20:24:47.4555107Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/tests/test_requirements.txt' 2025-03-21T20:24:47.4555974Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/tests' 2025-03-21T20:24:47.4556858Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator/Makefile' 2025-03-21T20:24:47.4557850Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator/lambda_function.py' 2025-03-21T20:24:47.4558872Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator/requirements.txt' 2025-03-21T20:24:47.4559918Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator/test_lambda_function.py' 2025-03-21T20:24:47.4561282Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator/test_samples/test_usage_log_1.txt' 2025-03-21T20:24:47.4562451Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator/test_samples/test_usage_log_1.zip' 2025-03-21T20:24:47.4563549Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator/test_samples' 2025-03-21T20:24:47.4564553Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/usage-log-aggregator' 2025-03-21T20:24:47.4565523Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/whl_metadata_upload_pep658/Makefile' 2025-03-21T20:24:47.4566526Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/whl_metadata_upload_pep658/README.md' 2025-03-21T20:24:47.4567560Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/whl_metadata_upload_pep658/lambda_function.py' 2025-03-21T20:24:47.4568646Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/whl_metadata_upload_pep658/requirements.txt' 2025-03-21T20:24:47.4569693Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/whl_metadata_upload_pep658/test_event.json' 2025-03-21T20:24:47.4570768Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/whl_metadata_upload_pep658/test_lambda_function.py' 2025-03-21T20:24:47.4571816Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda/whl_metadata_upload_pep658' 2025-03-21T20:24:47.4572707Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/lambda' 2025-03-21T20:24:47.4573584Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/websites/download.pytorch.org/README.md' 2025-03-21T20:24:47.4574630Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/websites/download.pytorch.org/meta_cdn_whl_redirect.js' 2025-03-21T20:24:47.4575730Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/websites/download.pytorch.org/pep503_whl_redirect.js' 2025-03-21T20:24:47.4576765Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/websites/download.pytorch.org' 2025-03-21T20:24:47.4577655Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws/websites' 2025-03-21T20:24:47.4578388Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/aws' 2025-03-21T20:24:47.4579521Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/README.md' 2025-03-21T20:24:47.4580471Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_benchmark_v3/schema.sql' 2025-03-21T20:24:47.4581594Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_benchmark_v3' 2025-03-21T20:24:47.4582694Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_benchmark_v3_materialized_views/schema.sql' 2025-03-21T20:24:47.4583869Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_benchmark_v3_materialized_views' 2025-03-21T20:24:47.4585004Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_queue_time_histogram/schema.sql' 2025-03-21T20:24:47.4586084Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_queue_time_histogram' 2025-03-21T20:24:47.4587198Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_utilization/oss_ci_time_series_schema.sql' 2025-03-21T20:24:47.4588392Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_utilization/oss_ci_utilization_metadata_schema.sql' 2025-03-21T20:24:47.4589506Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema/oss_ci_utilization' 2025-03-21T20:24:47.4590430Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/clickhouse_db_schema' 2025-03-21T20:24:47.4591186Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/mypy.ini' 2025-03-21T20:24:47.4591889Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/pyproject.toml' 2025-03-21T20:24:47.4592628Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/README.md' 2025-03-21T20:24:47.4593411Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/cut-release-branch.sh' 2025-03-21T20:24:47.4594228Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/promote.sh' 2025-03-21T20:24:47.4595042Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/promote/common_utils.sh' 2025-03-21T20:24:47.4595913Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/promote/conda_to_conda.sh' 2025-03-21T20:24:47.4596821Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/promote/prep_binary_for_pypi.sh' 2025-03-21T20:24:47.4597704Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/promote/s3_to_s3.sh' 2025-03-21T20:24:47.4598554Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/promote/wheel_to_pypi.sh' 2025-03-21T20:24:47.4599386Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/promote' 2025-03-21T20:24:47.4600249Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/pypi/prep_binary_for_pypi.sh' 2025-03-21T20:24:47.4601189Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/pypi/promote_pypi_to_production.sh' 2025-03-21T20:24:47.4602136Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/pypi/promote_pypi_to_staging.sh' 2025-03-21T20:24:47.4603059Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/pypi/upload_pypi_to_staging.sh' 2025-03-21T20:24:47.4603917Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/pypi' 2025-03-21T20:24:47.4604710Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/release_versions.sh' 2025-03-21T20:24:47.4605645Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release/restore-backup.sh' 2025-03-21T20:24:47.4606491Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/release' 2025-03-21T20:24:47.4607260Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/s3_management/README.md' 2025-03-21T20:24:47.4608082Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/s3_management/backup_conda.py' 2025-03-21T20:24:47.4608904Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/s3_management/manage.py' 2025-03-21T20:24:47.4609734Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/s3_management/requirements.txt' 2025-03-21T20:24:47.4610607Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/s3_management/update_dependencies.py' 2025-03-21T20:24:47.4611467Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/s3_management' 2025-03-21T20:24:47.4612265Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/.eslintignore' 2025-03-21T20:24:47.4613076Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/.eslintrc.json' 2025-03-21T20:24:47.4613887Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/.prettierignore' 2025-03-21T20:24:47.4614728Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/.prettierrc.json' 2025-03-21T20:24:47.4615524Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/README.md' 2025-03-21T20:24:47.4616393Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/__tests__/add-github-ssh-key.test.ts' 2025-03-21T20:24:47.4617344Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/__tests__/get-ip.test.ts' 2025-03-21T20:24:47.4618271Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/__tests__/github-utils.test.ts' 2025-03-21T20:24:47.4619270Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/__tests__' 2025-03-21T20:24:47.4620105Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/jest.config.js' 2025-03-21T20:24:47.4620911Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/package.json' 2025-03-21T20:24:47.4621765Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/src/add-github-ssh-key.ts' 2025-03-21T20:24:47.4622618Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/src/ec2-utils.ts' 2025-03-21T20:24:47.4623437Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/src/get-ip.ts' 2025-03-21T20:24:47.4624266Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/src/github-utils.ts' 2025-03-21T20:24:47.4625094Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/src/main.ts' 2025-03-21T20:24:47.4625891Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/src' 2025-03-21T20:24:47.4626689Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/tsconfig.json' 2025-03-21T20:24:47.4627464Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh/yarn.lock' 2025-03-21T20:24:47.4628235Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/setup-ssh' 2025-03-21T20:24:47.4628978Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/stats/README.md' 2025-03-21T20:24:47.4629704Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/stats' 2025-03-21T20:24:47.4630538Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/.gitignore' 2025-03-21T20:24:47.4631608Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/.tflint.hcl' 2025-03-21T20:24:47.4632636Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/LICENSE.md' 2025-03-21T20:24:47.4633552Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/Makefile' 2025-03-21T20:24:47.4634473Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/README.md' 2025-03-21T20:24:47.4635487Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/architecture-diagram.png' 2025-03-21T20:24:47.4636507Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/elastic_cache.tf' 2025-03-21T20:24:47.4637457Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/kms.tf' 2025-03-21T20:24:47.4638362Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/main.tf' 2025-03-21T20:24:47.4639390Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/download-lambda/.tflint.hcl' 2025-03-21T20:24:47.4640515Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/download-lambda/README.md' 2025-03-21T20:24:47.4641643Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/download-lambda/main.tf' 2025-03-21T20:24:47.4642764Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/download-lambda/outputs.tf' 2025-03-21T20:24:47.4643912Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/download-lambda/variables.tf' 2025-03-21T20:24:47.4645057Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/download-lambda' 2025-03-21T20:24:47.4646230Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/.tflint.hcl' 2025-03-21T20:24:47.4647433Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/README.md' 2025-03-21T20:24:47.4648787Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.eslintrc.yaml' 2025-03-21T20:24:47.4650263Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.gitignore' 2025-03-21T20:24:47.4651718Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.nvmrc' 2025-03-21T20:24:47.4653814Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/.prettierrc' 2025-03-21T20:24:47.4655918Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/Makefile' 2025-03-21T20:24:47.4658340Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/jest.config.js' 2025-03-21T20:24:47.4660916Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json' 2025-03-21T20:24:47.4663913Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/lambda.ts' 2025-03-21T20:24:47.4666942Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/local.ts' 2025-03-21T20:24:47.4669886Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/handler.test.ts' 2025-03-21T20:24:47.4672790Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer/handler.ts' 2025-03-21T20:24:47.4675494Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src/syncer' 2025-03-21T20:24:47.4677059Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/src' 2025-03-21T20:24:47.4678743Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-empty-assets.json' 2025-03-21T20:24:47.4680596Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-arm64.json' 2025-03-21T20:24:47.4682508Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases-no-linux.json' 2025-03-21T20:24:47.4684378Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources/github-list-releases.json' 2025-03-21T20:24:47.4686049Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test/resources' 2025-03-21T20:24:47.4687590Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/test' 2025-03-21T20:24:47.4689089Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/tsconfig.json' 2025-03-21T20:24:47.4690573Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/yarn.lock' 2025-03-21T20:24:47.4692050Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer' 2025-03-21T20:24:47.4693414Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/lambdas' 2025-03-21T20:24:47.4694630Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/main.tf' 2025-03-21T20:24:47.4695814Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/outputs.tf' 2025-03-21T20:24:47.4697119Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/policies/lambda-cloudwatch.json' 2025-03-21T20:24:47.4698784Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/policies/lambda-syncer.json' 2025-03-21T20:24:47.4700199Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/policies' 2025-03-21T20:24:47.4701508Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/runner-binaries-syncer.tf' 2025-03-21T20:24:47.4702817Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/terraform.tfvars' 2025-03-21T20:24:47.4704058Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/trigger.json' 2025-03-21T20:24:47.4705278Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer/variables.tf' 2025-03-21T20:24:47.4706495Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runner-binaries-syncer' 2025-03-21T20:24:47.4707651Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/encrypt.tf' 2025-03-21T20:24:47.4708834Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/launch-template.tf' 2025-03-21T20:24:47.4710028Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/logging.tf' 2025-03-21T20:24:47.4711171Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/main.tf' 2025-03-21T20:24:47.4712315Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/outputs.tf' 2025-03-21T20:24:47.4713517Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/policies-runner.tf' 2025-03-21T20:24:47.4714852Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-cloudwatch-policy.json' 2025-03-21T20:24:47.4716310Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-ec2-create-tags-policy.json' 2025-03-21T20:24:47.4717761Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-role-trust-policy.json' 2025-03-21T20:24:47.4719149Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-s3-policy.json' 2025-03-21T20:24:47.4720574Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/policies/instance-ssm-parameters-policy.json' 2025-03-21T20:24:47.4721915Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/policies' 2025-03-21T20:24:47.4723138Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/security-groups.tf' 2025-03-21T20:24:47.4724425Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/arm-runner-patch.tpl' 2025-03-21T20:24:47.4725767Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config.json' 2025-03-21T20:24:47.4727233Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_linux.json' 2025-03-21T20:24:47.4728732Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_linux_arm64.json' 2025-03-21T20:24:47.4730193Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_linux_nvidia.json' 2025-03-21T20:24:47.4731616Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/cloudwatch_config_windows.json' 2025-03-21T20:24:47.4733011Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/install-config-runner.ps1' 2025-03-21T20:24:47.4734388Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/install-config-runner.sh' 2025-03-21T20:24:47.4735721Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/user-data.ps1' 2025-03-21T20:24:47.4736993Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates/user-data.sh' 2025-03-21T20:24:47.4738237Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/templates' 2025-03-21T20:24:47.4739543Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances/variables.tf' 2025-03-21T20:24:47.4740709Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners-instances' 2025-03-21T20:24:47.4741814Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/.gitkeep' 2025-03-21T20:24:47.4742869Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/.tflint.hcl' 2025-03-21T20:24:47.4743969Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/.gitignore' 2025-03-21T20:24:47.4745163Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/.eslintrc.yaml' 2025-03-21T20:24:47.4746364Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/.nvmrc' 2025-03-21T20:24:47.4747553Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/.prettierrc' 2025-03-21T20:24:47.4748754Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/Makefile' 2025-03-21T20:24:47.4749940Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/README.md' 2025-03-21T20:24:47.4751156Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/jest.config.js' 2025-03-21T20:24:47.4752374Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/package.json' 2025-03-21T20:24:47.4753627Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/lambda.test.ts' 2025-03-21T20:24:47.4754956Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/lambda.ts' 2025-03-21T20:24:47.4756369Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/cache.test.ts' 2025-03-21T20:24:47.4757750Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/cache.ts' 2025-03-21T20:24:47.4759132Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/config.test.ts' 2025-03-21T20:24:47.4760532Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/config.ts' 2025-03-21T20:24:47.4762201Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-auth.test.ts' 2025-03-21T20:24:47.4763609Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-auth.ts' 2025-03-21T20:24:47.4765004Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-issues.test.ts' 2025-03-21T20:24:47.4766432Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-issues.ts' 2025-03-21T20:24:47.4767856Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-runners.test.ts' 2025-03-21T20:24:47.4769282Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/gh-runners.ts' 2025-03-21T20:24:47.4770713Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/kms/index.test.ts' 2025-03-21T20:24:47.4772130Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/kms/index.ts' 2025-03-21T20:24:47.4773519Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/kms' 2025-03-21T20:24:47.4774916Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/metrics.test.ts' 2025-03-21T20:24:47.4776313Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/metrics.ts' 2025-03-21T20:24:47.4777717Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/runners.test.ts' 2025-03-21T20:24:47.4779170Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/runners.ts' 2025-03-21T20:24:47.4780593Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-down.test.ts' 2025-03-21T20:24:47.4782021Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-down.ts' 2025-03-21T20:24:47.4783470Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-up-chron.test.ts' 2025-03-21T20:24:47.4785199Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-up-chron.ts' 2025-03-21T20:24:47.4786647Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-up.test.ts' 2025-03-21T20:24:47.4788057Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/scale-up.ts' 2025-03-21T20:24:47.4789440Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/sqs.test.ts' 2025-03-21T20:24:47.4790799Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/sqs.ts' 2025-03-21T20:24:47.4792178Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/utils.test.ts' 2025-03-21T20:24:47.4793539Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners/utils.ts' 2025-03-21T20:24:47.4794889Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/scale-runners' 2025-03-21T20:24:47.4796191Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src/template.yml' 2025-03-21T20:24:47.4797431Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/src' 2025-03-21T20:24:47.4798669Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test/reporter.js' 2025-03-21T20:24:47.4800019Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test/resources/sqs_receive_event.json' 2025-03-21T20:24:47.4801407Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test/resources' 2025-03-21T20:24:47.4802689Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/test' 2025-03-21T20:24:47.4803921Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/tsconfig.json' 2025-03-21T20:24:47.4805128Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners/yarn.lock' 2025-03-21T20:24:47.4806328Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas/runners' 2025-03-21T20:24:47.4807481Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/lambdas' 2025-03-21T20:24:47.4808558Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/main.tf' 2025-03-21T20:24:47.4809615Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/outputs.tf' 2025-03-21T20:24:47.4810756Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies-lambda-common.tf' 2025-03-21T20:24:47.4811985Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-cloudwatch.json' 2025-03-21T20:24:47.4813361Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-scale-down.json' 2025-03-21T20:24:47.4814630Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-scale-up-chron.json' 2025-03-21T20:24:47.4815905Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-scale-up.json' 2025-03-21T20:24:47.4817181Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies/lambda-secretsmanager.json' 2025-03-21T20:24:47.4818620Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies/service-linked-role-create-policy.json' 2025-03-21T20:24:47.4819961Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/policies' 2025-03-21T20:24:47.4821081Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/scale-down.tf' 2025-03-21T20:24:47.4822192Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/scale-up-chron.tf' 2025-03-21T20:24:47.4823302Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/scale-up.tf' 2025-03-21T20:24:47.4824403Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners/variables.tf' 2025-03-21T20:24:47.4825470Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/runners' 2025-03-21T20:24:47.4826587Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/.tflint.hcl' 2025-03-21T20:24:47.4827786Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/README.md' 2025-03-21T20:24:47.4828968Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/main.tf' 2025-03-21T20:24:47.4830153Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/outputs.tf' 2025-03-21T20:24:47.4831476Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/assume-role-for-account.json' 2025-03-21T20:24:47.4832853Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/boundary.json' 2025-03-21T20:24:47.4834201Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/deploy-boundary.json' 2025-03-21T20:24:47.4835562Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies/deploy-policy.json' 2025-03-21T20:24:47.4836876Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/policies' 2025-03-21T20:24:47.4838102Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions/variables.tf' 2025-03-21T20:24:47.4839303Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/setup-iam-permissions' 2025-03-21T20:24:47.4840533Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/.tflint.hcl' 2025-03-21T20:24:47.4841658Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/README.md' 2025-03-21T20:24:47.4842817Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.eslintrc.yaml' 2025-03-21T20:24:47.4844041Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.gitignore' 2025-03-21T20:24:47.4845225Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.nvmrc' 2025-03-21T20:24:47.4846411Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/.prettierrc' 2025-03-21T20:24:47.4847598Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/Makefile' 2025-03-21T20:24:47.4848821Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/jest.config.js' 2025-03-21T20:24:47.4850088Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/jest.config.js-bkp' 2025-03-21T20:24:47.4851517Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/package.json' 2025-03-21T20:24:47.4852761Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/kms/index.ts' 2025-03-21T20:24:47.4854024Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/kms' 2025-03-21T20:24:47.4855270Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/lambda.ts' 2025-03-21T20:24:47.4856489Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/local.ts' 2025-03-21T20:24:47.4857852Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/sqs/index.ts' 2025-03-21T20:24:47.4859195Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/sqs' 2025-03-21T20:24:47.4860507Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/webhook/handler.test.ts' 2025-03-21T20:24:47.4862051Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/webhook/handler.ts' 2025-03-21T20:24:47.4863356Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src/webhook' 2025-03-21T20:24:47.4864609Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/src' 2025-03-21T20:24:47.4865846Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test/reporter.js' 2025-03-21T20:24:47.4867224Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test/resources/github_check_run_event.json' 2025-03-21T20:24:47.4868643Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test/resources' 2025-03-21T20:24:47.4870197Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/test' 2025-03-21T20:24:47.4871415Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/tsconfig.json' 2025-03-21T20:24:47.4872629Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook/yarn.lock' 2025-03-21T20:24:47.4873816Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas/webhook' 2025-03-21T20:24:47.4874969Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/lambdas' 2025-03-21T20:24:47.4876059Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/main.tf' 2025-03-21T20:24:47.4877113Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/outputs.tf' 2025-03-21T20:24:47.4878189Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/policies.tf' 2025-03-21T20:24:47.4879357Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/policies/lambda-cloudwatch.json' 2025-03-21T20:24:47.4880613Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/policies/lambda-orchestrator.json' 2025-03-21T20:24:47.4881933Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/policies/lambda-publish-sqs-policy.json' 2025-03-21T20:24:47.4883171Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/policies' 2025-03-21T20:24:47.4884302Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/terraform.tfvars' 2025-03-21T20:24:47.4885404Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/variables.tf' 2025-03-21T20:24:47.4886476Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook/webhook.tf' 2025-03-21T20:24:47.4887531Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules/webhook' 2025-03-21T20:24:47.4888547Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/modules' 2025-03-21T20:24:47.4889501Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/outputs.tf' 2025-03-21T20:24:47.4890573Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/policies/lambda-publish-sqs-policy.json' 2025-03-21T20:24:47.4891667Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/policies' 2025-03-21T20:24:47.4892718Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/templates/resource-group.json' 2025-03-21T20:24:47.4893779Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/templates' 2025-03-21T20:24:47.4894839Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/terraform_migrations/local_ops.sh' 2025-03-21T20:24:47.4895946Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/terraform_migrations' 2025-03-21T20:24:47.4897069Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/tools/aws-ssh-session' 2025-03-21T20:24:47.4898157Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/tools/run-aws-lambda-helper' 2025-03-21T20:24:47.4899259Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/tools' 2025-03-21T20:24:47.4900232Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner/variables.tf' 2025-03-21T20:24:47.4901170Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/terraform-aws-github-runner' 2025-03-21T20:24:47.4902011Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/__init__.py' 2025-03-21T20:24:47.4902813Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics/cubinsizes.py' 2025-03-21T20:24:47.4903707Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics/download_count_wheels.py' 2025-03-21T20:24:47.4904624Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics/duplicates_analyze.py' 2025-03-21T20:24:47.4905528Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics/github_analyze.py' 2025-03-21T20:24:47.4906441Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics/s3_test_stats_analyze.py' 2025-03-21T20:24:47.4907361Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics/validate_binaries.py' 2025-03-21T20:24:47.4908289Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics/validate_pypi_staging.py' 2025-03-21T20:24:47.4909161Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/analytics' 2025-03-21T20:24:47.4910025Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/binary_size_validation/README.md' 2025-03-21T20:24:47.4911010Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/binary_size_validation/binary_size_validation.py' 2025-03-21T20:24:47.4912028Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/binary_size_validation/requirements.txt' 2025-03-21T20:24:47.4913065Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/binary_size_validation/test_binary_size_validation.py' 2025-03-21T20:24:47.4914073Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/binary_size_validation' 2025-03-21T20:24:47.4914979Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/.gitignore' 2025-03-21T20:24:47.4915978Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/11.x-patches/max-tokens-check.diff' 2025-03-21T20:24:47.4917148Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/11.x-patches/potential-unbounded-loop-check.diff' 2025-03-21T20:24:47.4918245Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/11.x-patches' 2025-03-21T20:24:47.4919307Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/15.x-patches/0001-Max-tokens-checks.diff' 2025-03-21T20:24:47.4938795Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/15.x-patches/0002-potential-unbounded-loop-check.diff' 2025-03-21T20:24:47.4940116Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/15.x-patches/0003-Do-not-use-pthread_rwlock_wrlock.diff' 2025-03-21T20:24:47.4941446Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/15.x-patches' 2025-03-21T20:24:47.4942638Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/17.x-patches/0003-Do-not-use-pthread_rwlock_wrlock.diff' 2025-03-21T20:24:47.4943761Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/17.x-patches' 2025-03-21T20:24:47.4944776Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/Dockerfile.cilint-clang-tidy' 2025-03-21T20:24:47.4945754Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/README.md' 2025-03-21T20:24:47.4946659Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/check_s3.py' 2025-03-21T20:24:47.4947556Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/setup.sh' 2025-03-21T20:24:47.4948434Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks/verify.sh' 2025-03-21T20:24:47.4949317Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/clang-tidy-checks' 2025-03-21T20:24:47.4950238Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/device-farm-runner/requirements.txt' 2025-03-21T20:24:47.4951221Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/device-farm-runner/run_on_aws_devicefarm.py' 2025-03-21T20:24:47.4952262Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/device-farm-runner/test_run_on_aws_devicefarm.py' 2025-03-21T20:24:47.4953245Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/device-farm-runner' 2025-03-21T20:24:47.4954184Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/fleet_analysis/runner_usage_stats.ipynb' 2025-03-21T20:24:47.4955096Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/fleet_analysis' 2025-03-21T20:24:47.4955999Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/actionlint_linter.py' 2025-03-21T20:24:47.4956929Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/exec_linter.py' 2025-03-21T20:24:47.4957914Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/flake8_linter.py' 2025-03-21T20:24:47.4958862Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/grep_linter.py' 2025-03-21T20:24:47.4959826Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/lintrunner_version_linter.py' 2025-03-21T20:24:47.4961052Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/mypy_linter.py' 2025-03-21T20:24:47.4961987Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/newlines_linter.py' 2025-03-21T20:24:47.4962903Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/pip_init.py' 2025-03-21T20:24:47.4963800Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/pyfmt_linter.py' 2025-03-21T20:24:47.4964698Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/ruff_linter.py' 2025-03-21T20:24:47.4965597Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/rustfmt.toml' 2025-03-21T20:24:47.4966511Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/rustfmt_linter.py' 2025-03-21T20:24:47.4967412Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/s3_init.py' 2025-03-21T20:24:47.4968499Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/s3_init_config.json' 2025-03-21T20:24:47.4969533Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/sql_params_linter.py' 2025-03-21T20:24:47.4970486Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters/sqlfluff_linter.py' 2025-03-21T20:24:47.4971370Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/adapters' 2025-03-21T20:24:47.4972233Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter/convert_to_sarif.py' 2025-03-21T20:24:47.4973063Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/linter' 2025-03-21T20:24:47.4973954Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/mirror-pypi/mirror_pytorch_triton_rocm.sh' 2025-03-21T20:24:47.4974873Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/mirror-pypi' 2025-03-21T20:24:47.4975696Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/.flake8' 2025-03-21T20:24:47.4976540Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/.gitattributes' 2025-03-21T20:24:47.4977387Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/.gitignore' 2025-03-21T20:24:47.4978219Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/Makefile' 2025-03-21T20:24:47.4979129Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/README.md' 2025-03-21T20:24:47.4979978Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/poetry.lock' 2025-03-21T20:24:47.4980861Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pyproject.toml' 2025-03-21T20:24:47.4981819Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/__init__.py' 2025-03-21T20:24:47.4982842Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/__main__.py' 2025-03-21T20:24:47.4983826Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/conda.py' 2025-03-21T20:24:47.4984812Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/cuda.py' 2025-03-21T20:24:47.4985798Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/macos.py' 2025-03-21T20:24:47.4986787Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/utils.py' 2025-03-21T20:24:47.4987787Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/version.py' 2025-03-21T20:24:47.4988786Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers/wheel.py' 2025-03-21T20:24:47.4989774Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/pytorch_pkg_helpers' 2025-03-21T20:24:47.4990861Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/assets/conda_search.json' 2025-03-21T20:24:47.4991837Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/assets' 2025-03-21T20:24:47.4992758Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/test_conda.py' 2025-03-21T20:24:47.4993761Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/test_cuda.py' 2025-03-21T20:24:47.4994671Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/test_macos.py' 2025-03-21T20:24:47.4995645Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/test_utils.py' 2025-03-21T20:24:47.4996577Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/test_version.py' 2025-03-21T20:24:47.4998002Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests/test_wheel.py' 2025-03-21T20:24:47.4998900Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers/tests' 2025-03-21T20:24:47.4999752Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/pkg-helpers' 2025-03-21T20:24:47.5000608Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/README.md' 2025-03-21T20:24:47.5001505Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/compare_keys.py' 2025-03-21T20:24:47.5002493Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/create_clickhouse_schema.py' 2025-03-21T20:24:47.5003458Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/dynamo2ch.py' 2025-03-21T20:24:47.5004383Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/rockset_2_dynamodb.py' 2025-03-21T20:24:47.5005358Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/rockset_queries.ipynb' 2025-03-21T20:24:47.5006324Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/rockset_queries.py' 2025-03-21T20:24:47.5007242Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration/s32ch.py' 2025-03-21T20:24:47.5008120Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/rockset_migration' 2025-03-21T20:24:47.5009017Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/analyze_ci_workflows.py' 2025-03-21T20:24:47.5009909Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/backfill_events.py' 2025-03-21T20:24:47.5010823Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/consolidate_scale_config_yaml.py' 2025-03-21T20:24:47.5011762Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/download-lambdas.py' 2025-03-21T20:24:47.5012677Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/fetch_latest_green_commit.py' 2025-03-21T20:24:47.5013646Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/generate_binary_build_matrix.py' 2025-03-21T20:24:47.5014639Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/generate_docker_release_matrix.py' 2025-03-21T20:24:47.5015608Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/generate_release_matrix.py' 2025-03-21T20:24:47.5016541Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/get_stable_cuda_version.py' 2025-03-21T20:24:47.5017421Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/gitutils.py' 2025-03-21T20:24:47.5018327Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/identify_and_kill_instances_by_id.py' 2025-03-21T20:24:47.5019434Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts/list_prs_from_partners_by_label.py' 2025-03-21T20:24:47.5020436Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/scripts' 2025-03-21T20:24:47.5021374Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/.gitignore' 2025-03-21T20:24:47.5022320Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/Makefile' 2025-03-21T20:24:47.5023257Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/README.md' 2025-03-21T20:24:47.5024251Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/check_runners_state.py' 2025-03-21T20:24:47.5025309Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/check_runners_state_org.py' 2025-03-21T20:24:47.5026389Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/clear_offline_runners.py' 2025-03-21T20:24:47.5027473Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/list-vpc-dependencies.sh' 2025-03-21T20:24:47.5028603Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/replace_runners_prefix_submit_pr.py' 2025-03-21T20:24:47.5029693Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils/requirements.txt' 2025-03-21T20:24:47.5030673Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/self-hosted-runner-utils' 2025-03-21T20:24:47.5031553Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/.flake8' 2025-03-21T20:24:47.5032378Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/bin/.gitignore' 2025-03-21T20:24:47.5033266Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/bin/analyze-history' 2025-03-21T20:24:47.5034251Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/bin/build-check-api-compatibility' 2025-03-21T20:24:47.5035199Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/bin' 2025-03-21T20:24:47.5036058Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/pyproject.toml' 2025-03-21T20:24:47.5036933Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/requirements.txt' 2025-03-21T20:24:47.5037826Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/__init__.py' 2025-03-21T20:24:47.5038698Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/ast.py' 2025-03-21T20:24:47.5039573Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/checker.py' 2025-03-21T20:24:47.5040507Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/compatibility.py' 2025-03-21T20:24:47.5041414Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/git.py' 2025-03-21T20:24:47.5042282Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/github.py' 2025-03-21T20:24:47.5043169Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/types.py' 2025-03-21T20:24:47.5044073Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api/violations.py' 2025-03-21T20:24:47.5044965Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src/api' 2025-03-21T20:24:47.5045829Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/src' 2025-03-21T20:24:47.5046773Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api/conftest.py' 2025-03-21T20:24:47.5047753Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api/test_ast.py' 2025-03-21T20:24:47.5048774Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api/test_ast_param_compatibility.py' 2025-03-21T20:24:47.5049845Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api/test_ast_param_types.py' 2025-03-21T20:24:47.5050864Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api/test_compatibility.py' 2025-03-21T20:24:47.5051825Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api/test_git.py' 2025-03-21T20:24:47.5052761Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api/test_github.py' 2025-03-21T20:24:47.5053687Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/api' 2025-03-21T20:24:47.5054634Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/lib/testing/__init__.py' 2025-03-21T20:24:47.5055597Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/lib/testing/git.py' 2025-03-21T20:24:47.5056557Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/lib/testing/source.py' 2025-03-21T20:24:47.5057526Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/lib/testing' 2025-03-21T20:24:47.5058446Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests/lib' 2025-03-21T20:24:47.5059460Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold/tests' 2025-03-21T20:24:47.5060309Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/stronghold' 2025-03-21T20:24:47.5061422Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/README.md' 2025-03-21T20:24:47.5062346Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_linux_conda_cuda.json' 2025-03-21T20:24:47.5063402Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_linux_wheel_cuda.json' 2025-03-21T20:24:47.5064483Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_linux_wheel_cuda_norocm.json' 2025-03-21T20:24:47.5065575Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_linux_wheel_nocpu.json' 2025-03-21T20:24:47.5066609Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_linux_wheel_xpu.json' 2025-03-21T20:24:47.5067629Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_macos_conda.json' 2025-03-21T20:24:47.5068627Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_macos_wheel.json' 2025-03-21T20:24:47.5069653Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_windows_conda_cuda.json' 2025-03-21T20:24:47.5070710Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_windows_wheel_cuda.json' 2025-03-21T20:24:47.5071764Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets/build_matrix_windows_wheel_xpu.json' 2025-03-21T20:24:47.5072875Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/assets' 2025-03-21T20:24:47.5073778Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/build_matrix_linux_wheel_nocpu.json' 2025-03-21T20:24:47.5074870Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/test_fetch_latest_green_commit.py' 2025-03-21T20:24:47.5075859Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/test_generate_binary_build_matrix.py' 2025-03-21T20:24:47.5076799Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests/update_test_assets.sh' 2025-03-21T20:24:47.5077629Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/tests' 2025-03-21T20:24:47.5078417Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/README.md' 2025-03-21T20:24:47.5079241Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/check_alerts.py' 2025-03-21T20:24:47.5080071Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/clickhouse.py' 2025-03-21T20:24:47.5080953Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/clickhouse_query_perf.py' 2025-03-21T20:24:47.5081839Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/download_logs.py' 2025-03-21T20:24:47.5082691Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/github_analyze.py' 2025-03-21T20:24:47.5083542Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/pyproject.toml' 2025-03-21T20:24:47.5084381Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/queue_alert.py' 2025-03-21T20:24:47.5085226Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/requirements.txt' 2025-03-21T20:24:47.5086052Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/reverts.py' 2025-03-21T20:24:47.5086921Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/td/get_merge_base_info.py' 2025-03-21T20:24:47.5087924Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/td/historical_class_failure_correlation.py' 2025-03-21T20:24:47.5088996Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/td/historical_file_failure_correlation.py' 2025-03-21T20:24:47.5090067Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/td/td_heuristic_historical_edited_files.py' 2025-03-21T20:24:47.5091076Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/td/td_heuristic_profiling.py' 2025-03-21T20:24:47.5091958Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/td/utils.py' 2025-03-21T20:24:47.5092763Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/td' 2025-03-21T20:24:47.5093723Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/tests/td/test_calculate_file_test_rating.py' 2025-03-21T20:24:47.5094693Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/tests/td' 2025-03-21T20:24:47.5095587Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/tests/test_check_alerts.py' 2025-03-21T20:24:47.5096517Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/tests/test_queue_alert.py' 2025-03-21T20:24:47.5097476Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/tests/test_update_test_times.py' 2025-03-21T20:24:47.5098381Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/tests' 2025-03-21T20:24:47.5099424Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/update_test_times.py' 2025-03-21T20:24:47.5100330Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci/utils.py' 2025-03-21T20:24:47.5101116Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchci' 2025-03-21T20:24:47.5101910Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchfix/README.md' 2025-03-21T20:24:47.5102711Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools/torchfix' 2025-03-21T20:24:47.5103478Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/tools' 2025-03-21T20:24:47.5104232Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/.env.example' 2025-03-21T20:24:47.5105001Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/.eslintrc.json' 2025-03-21T20:24:47.5105771Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/.gitignore' 2025-03-21T20:24:47.5106551Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/.prettierignore' 2025-03-21T20:24:47.5107378Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/.prettierrc.json' 2025-03-21T20:24:47.5108164Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/README.md' 2025-03-21T20:24:47.5109116Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/overall/params.json' 2025-03-21T20:24:47.5110263Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/overall/query.sql' 2025-03-21T20:24:47.5111377Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/overall' 2025-03-21T20:24:47.5112541Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/sccache_stats/params.json' 2025-03-21T20:24:47.5113733Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/sccache_stats/query.sql' 2025-03-21T20:24:47.5114913Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/sccache_stats' 2025-03-21T20:24:47.5116069Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/steps/params.json' 2025-03-21T20:24:47.5117199Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/steps/query.sql' 2025-03-21T20:24:47.5118309Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics/steps' 2025-03-21T20:24:47.5119395Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/build_time_metrics' 2025-03-21T20:24:47.5120452Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_failed_jobs/params.json' 2025-03-21T20:24:47.5121525Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_failed_jobs/query.sql' 2025-03-21T20:24:47.5122589Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_failed_jobs' 2025-03-21T20:24:47.5123681Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_jobs_batch_query/params.json' 2025-03-21T20:24:47.5124861Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_jobs_batch_query/query.sql' 2025-03-21T20:24:47.5126029Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_jobs_batch_query' 2025-03-21T20:24:47.5127121Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_jobs_query/params.json' 2025-03-21T20:24:47.5128187Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_jobs_query/query.sql' 2025-03-21T20:24:47.5129215Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/commit_jobs_query' 2025-03-21T20:24:47.5130340Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/compilers_benchmark_performance/params.json' 2025-03-21T20:24:47.5131528Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/compilers_benchmark_performance/query.sql' 2025-03-21T20:24:47.5132704Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/compilers_benchmark_performance' 2025-03-21T20:24:47.5133925Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/compilers_benchmark_performance_branches/params.json' 2025-03-21T20:24:47.5135184Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/compilers_benchmark_performance_branches/query.sql' 2025-03-21T20:24:47.5136427Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/compilers_benchmark_performance_branches' 2025-03-21T20:24:47.5137596Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/correlation_matrix/params.json' 2025-03-21T20:24:47.5138770Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/correlation_matrix/query.sql' 2025-03-21T20:24:47.5139841Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/correlation_matrix' 2025-03-21T20:24:47.5140900Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_gpu/params.json' 2025-03-21T20:24:47.5141955Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_gpu/query.sql' 2025-03-21T20:24:47.5142997Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_gpu' 2025-03-21T20:24:47.5144069Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_job_name/params.json' 2025-03-21T20:24:47.5145174Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_job_name/query.sql' 2025-03-21T20:24:47.5146263Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_job_name' 2025-03-21T20:24:47.5147362Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_owning_account/params.json' 2025-03-21T20:24:47.5148507Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_owning_account/query.sql' 2025-03-21T20:24:47.5149633Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_owning_account' 2025-03-21T20:24:47.5150750Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_platform/params.json' 2025-03-21T20:24:47.5151917Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_platform/query.sql' 2025-03-21T20:24:47.5153054Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_platform' 2025-03-21T20:24:47.5154148Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_provider/params.json' 2025-03-21T20:24:47.5155248Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_provider/query.sql' 2025-03-21T20:24:47.5156322Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_provider' 2025-03-21T20:24:47.5157394Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_repo/params.json' 2025-03-21T20:24:47.5158464Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_repo/query.sql' 2025-03-21T20:24:47.5159511Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_repo' 2025-03-21T20:24:47.5160806Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_runner_type/params.json' 2025-03-21T20:24:47.5161955Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_runner_type/query.sql' 2025-03-21T20:24:47.5163069Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_runner_type' 2025-03-21T20:24:47.5164191Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_workflow_name/params.json' 2025-03-21T20:24:47.5165323Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_workflow_name/query.sql' 2025-03-21T20:24:47.5166462Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/cost_job_per_workflow_name' 2025-03-21T20:24:47.5167590Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_historical/params.json' 2025-03-21T20:24:47.5168708Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_historical/query.sql' 2025-03-21T20:24:47.5169812Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_historical' 2025-03-21T20:24:47.5170914Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_labels/params.json' 2025-03-21T20:24:47.5172001Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_labels/query.sql' 2025-03-21T20:24:47.5173076Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_labels' 2025-03-21T20:24:47.5174147Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_total/params.json' 2025-03-21T20:24:47.5175227Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_total/query.sql' 2025-03-21T20:24:47.5176294Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_test_total' 2025-03-21T20:24:47.5177355Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_tests/params.json' 2025-03-21T20:24:47.5178393Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_tests/query.sql' 2025-03-21T20:24:47.5179665Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/disabled_tests' 2025-03-21T20:24:47.5180855Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_gpu/params.json' 2025-03-21T20:24:47.5181949Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_gpu/query.sql' 2025-03-21T20:24:47.5183013Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_gpu' 2025-03-21T20:24:47.5184112Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_job_name/params.json' 2025-03-21T20:24:47.5185240Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_job_name/query.sql' 2025-03-21T20:24:47.5186358Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_job_name' 2025-03-21T20:24:47.5187514Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_owning_account/params.json' 2025-03-21T20:24:47.5188692Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_owning_account/query.sql' 2025-03-21T20:24:47.5189859Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_owning_account' 2025-03-21T20:24:47.5191011Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_platform/params.json' 2025-03-21T20:24:47.5192125Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_platform/query.sql' 2025-03-21T20:24:47.5193248Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_platform' 2025-03-21T20:24:47.5194389Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_provider/params.json' 2025-03-21T20:24:47.5195521Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_provider/query.sql' 2025-03-21T20:24:47.5196640Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_provider' 2025-03-21T20:24:47.5197752Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_repo/params.json' 2025-03-21T20:24:47.5198853Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_repo/query.sql' 2025-03-21T20:24:47.5199943Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_repo' 2025-03-21T20:24:47.5201052Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_runner_type/params.json' 2025-03-21T20:24:47.5202210Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_runner_type/query.sql' 2025-03-21T20:24:47.5203353Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_runner_type' 2025-03-21T20:24:47.5204509Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_workflow_name/params.json' 2025-03-21T20:24:47.5205684Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_workflow_name/query.sql' 2025-03-21T20:24:47.5206928Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/duration_job_per_workflow_name' 2025-03-21T20:24:47.5208161Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/experiment_rollover_percentage/params.json' 2025-03-21T20:24:47.5209345Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/experiment_rollover_percentage/query.sql' 2025-03-21T20:24:47.5210499Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/experiment_rollover_percentage' 2025-03-21T20:24:47.5211665Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/external_contribution_stats/params.json' 2025-03-21T20:24:47.5212823Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/external_contribution_stats/query.sql' 2025-03-21T20:24:47.5213974Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/external_contribution_stats' 2025-03-21T20:24:47.5215107Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/failed_workflow_jobs/params.json' 2025-03-21T20:24:47.5216204Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/failed_workflow_jobs/query.sql' 2025-03-21T20:24:47.5217286Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/failed_workflow_jobs' 2025-03-21T20:24:47.5218383Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/filter_forced_merge_pr/params.json' 2025-03-21T20:24:47.5219570Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/filter_forced_merge_pr/query.sql' 2025-03-21T20:24:47.5220668Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/filter_forced_merge_pr' 2025-03-21T20:24:47.5221875Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/check_every_test/params.json' 2025-03-21T20:24:47.5223190Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/check_every_test/query.sql' 2025-03-21T20:24:47.5224495Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/check_every_test' 2025-03-21T20:24:47.5225788Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/failed_tests/params.json' 2025-03-21T20:24:47.5227061Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/failed_tests/query.sql' 2025-03-21T20:24:47.5228320Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/failed_tests' 2025-03-21T20:24:47.5229609Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/workflow_job_info/params.json' 2025-03-21T20:24:47.5230912Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/workflow_job_info/query.sql' 2025-03-21T20:24:47.5232214Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns/workflow_job_info' 2025-03-21T20:24:47.5233437Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_file_reruns' 2025-03-21T20:24:47.5234692Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_jobs/params.json' 2025-03-21T20:24:47.5235810Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_jobs/query.sql' 2025-03-21T20:24:47.5236942Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/across_jobs' 2025-03-21T20:24:47.5238105Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/disabled_non_flaky_tests/params.json' 2025-03-21T20:24:47.5239328Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/disabled_non_flaky_tests/query.sql' 2025-03-21T20:24:47.5240532Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/disabled_non_flaky_tests' 2025-03-21T20:24:47.5241696Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/in_subprocess/params.json' 2025-03-21T20:24:47.5242825Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/in_subprocess/query.sql' 2025-03-21T20:24:47.5243943Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/in_subprocess' 2025-03-21T20:24:47.5245059Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/ind_info/params.json' 2025-03-21T20:24:47.5246150Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/ind_info/query.sql' 2025-03-21T20:24:47.5247226Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests/ind_info' 2025-03-21T20:24:47.5248267Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_tests' 2025-03-21T20:24:47.5249317Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_workflows_jobs/params.json' 2025-03-21T20:24:47.5250392Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_workflows_jobs/query.sql' 2025-03-21T20:24:47.5251461Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/flaky_workflows_jobs' 2025-03-21T20:24:47.5252546Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/get_workers_on_period/params.json' 2025-03-21T20:24:47.5253643Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/get_workers_on_period/query.sql' 2025-03-21T20:24:47.5254730Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/get_workers_on_period' 2025-03-21T20:24:47.5255805Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/get_workflow_jobs/params.json' 2025-03-21T20:24:47.5256870Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/get_workflow_jobs/query.sql' 2025-03-21T20:24:47.5257905Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/get_workflow_jobs' 2025-03-21T20:24:47.5259040Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/hud_query/params.json' 2025-03-21T20:24:47.5260047Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/hud_query/query.sql' 2025-03-21T20:24:47.5261327Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/hud_query' 2025-03-21T20:24:47.5262449Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/issue_query/params.json' 2025-03-21T20:24:47.5263464Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/issue_query/query.sql' 2025-03-21T20:24:47.5264466Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/issue_query' 2025-03-21T20:24:47.5265502Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/job_duration_avg/params.json' 2025-03-21T20:24:47.5266548Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/job_duration_avg/query.sql' 2025-03-21T20:24:47.5267598Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/job_duration_avg' 2025-03-21T20:24:47.5268683Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/job_duration_percentile/params.json' 2025-03-21T20:24:47.5269801Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/job_duration_percentile/query.sql' 2025-03-21T20:24:47.5270901Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/job_duration_percentile' 2025-03-21T20:24:47.5271982Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_branch_push/params.json' 2025-03-21T20:24:47.5273039Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_branch_push/query.sql' 2025-03-21T20:24:47.5274084Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_branch_push' 2025-03-21T20:24:47.5275144Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_successful_jobs/params.json' 2025-03-21T20:24:47.5276238Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_successful_jobs/query.sql' 2025-03-21T20:24:47.5277311Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_successful_jobs' 2025-03-21T20:24:47.5278409Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_successful_workflow/params.json' 2025-03-21T20:24:47.5279528Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_successful_workflow/query.sql' 2025-03-21T20:24:47.5280633Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/last_successful_workflow' 2025-03-21T20:24:47.5281749Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/lf_rollover_percentage/params.json' 2025-03-21T20:24:47.5282858Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/lf_rollover_percentage/query.sql' 2025-03-21T20:24:47.5283934Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/lf_rollover_percentage' 2025-03-21T20:24:47.5285018Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/log_captures_count/params.json' 2025-03-21T20:24:47.5286089Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/log_captures_count/query.sql' 2025-03-21T20:24:47.5287144Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/log_captures_count' 2025-03-21T20:24:47.5288328Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red/params.json' 2025-03-21T20:24:47.5289448Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red/query.sql' 2025-03-21T20:24:47.5290503Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red' 2025-03-21T20:24:47.5291569Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_avg/params.json' 2025-03-21T20:24:47.5292673Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_avg/query.sql' 2025-03-21T20:24:47.5293763Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_avg' 2025-03-21T20:24:47.5294860Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_jobs/params.json' 2025-03-21T20:24:47.5295967Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_jobs/query.sql' 2025-03-21T20:24:47.5297059Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_jobs' 2025-03-21T20:24:47.5298175Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_percent/params.json' 2025-03-21T20:24:47.5299384Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_percent/query.sql' 2025-03-21T20:24:47.5300486Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_percent' 2025-03-21T20:24:47.5301647Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_percent_groups/params.json' 2025-03-21T20:24:47.5302837Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_percent_groups/query.sql' 2025-03-21T20:24:47.5304008Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/master_commit_red_percent_groups' 2025-03-21T20:24:47.5305175Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/monthly_contribution_stats/params.json' 2025-03-21T20:24:47.5306331Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/monthly_contribution_stats/query.sql' 2025-03-21T20:24:47.5307461Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/monthly_contribution_stats' 2025-03-21T20:24:47.5308562Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red/params.json' 2025-03-21T20:24:47.5309613Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red/query.sql' 2025-03-21T20:24:47.5310662Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red' 2025-03-21T20:24:47.5311752Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_by_name/params.json' 2025-03-21T20:24:47.5312871Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_by_name/query.sql' 2025-03-21T20:24:47.5313984Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_by_name' 2025-03-21T20:24:47.5315179Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_by_platform/params.json' 2025-03-21T20:24:47.5316389Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_by_platform/query.sql' 2025-03-21T20:24:47.5317537Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_by_platform' 2025-03-21T20:24:47.5318665Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_past_day/params.json' 2025-03-21T20:24:47.5319805Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_past_day/query.sql' 2025-03-21T20:24:47.5320929Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/nightly_jobs_red_past_day' 2025-03-21T20:24:47.5322040Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/num_commits_master/params.json' 2025-03-21T20:24:47.5323118Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/num_commits_master/query.sql' 2025-03-21T20:24:47.5324182Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/num_commits_master' 2025-03-21T20:24:47.5325222Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/num_reverts/params.json' 2025-03-21T20:24:47.5326238Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/num_reverts/query.sql' 2025-03-21T20:24:47.5327227Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/num_reverts' 2025-03-21T20:24:47.5328337Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/number_of_force_pushes_historical/params.json' 2025-03-21T20:24:47.5329537Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/number_of_force_pushes_historical/query.sql' 2025-03-21T20:24:47.5330723Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/number_of_force_pushes_historical' 2025-03-21T20:24:47.5331886Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_branches/params.json' 2025-03-21T20:24:47.5333014Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_branches/query.sql' 2025-03-21T20:24:47.5334131Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_branches' 2025-03-21T20:24:47.5335244Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_llms/params.json' 2025-03-21T20:24:47.5336327Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_llms/query.sql' 2025-03-21T20:24:47.5337410Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_llms' 2025-03-21T20:24:47.5338507Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_names/params.json' 2025-03-21T20:24:47.5339689Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_names/query.sql' 2025-03-21T20:24:47.5340777Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_benchmark_names' 2025-03-21T20:24:47.5341982Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_list_util_metadata_info/params.json' 2025-03-21T20:24:47.5343212Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_list_util_metadata_info/query.sql' 2025-03-21T20:24:47.5344371Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_list_util_metadata_info' 2025-03-21T20:24:47.5345492Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_util_metadata/params.json' 2025-03-21T20:24:47.5346580Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_util_metadata/query.sql' 2025-03-21T20:24:47.5347650Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_util_metadata' 2025-03-21T20:24:47.5348710Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_util_ts/params.json' 2025-03-21T20:24:47.5349748Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_util_ts/query.sql' 2025-03-21T20:24:47.5350768Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/oss_ci_util_ts' 2025-03-21T20:24:47.5351780Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/pr_commits/params.json' 2025-03-21T20:24:47.5352779Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/pr_commits/query.sql' 2025-03-21T20:24:47.5353755Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/pr_commits' 2025-03-21T20:24:47.5354787Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/pr_merge_commits/params.json' 2025-03-21T20:24:47.5355848Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/pr_merge_commits/query.sql' 2025-03-21T20:24:47.5356894Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/pr_merge_commits' 2025-03-21T20:24:47.5357978Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/query_execution_metrics/params.json' 2025-03-21T20:24:47.5359092Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/query_execution_metrics/query.sql' 2025-03-21T20:24:47.5360196Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/query_execution_metrics' 2025-03-21T20:24:47.5361594Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/query_execution_metrics_individual/params.json' 2025-03-21T20:24:47.5362800Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/query_execution_metrics_individual/query.sql' 2025-03-21T20:24:47.5363994Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/query_execution_metrics_individual' 2025-03-21T20:24:47.5365143Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queue_times_historical/params.json' 2025-03-21T20:24:47.5366249Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queue_times_historical/query.sql' 2025-03-21T20:24:47.5367338Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queue_times_historical' 2025-03-21T20:24:47.5368573Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queue_times_historical_pct/params.json' 2025-03-21T20:24:47.5369800Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queue_times_historical_pct/query.sql' 2025-03-21T20:24:47.5370928Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queue_times_historical_pct' 2025-03-21T20:24:47.5371989Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs/params.json' 2025-03-21T20:24:47.5373002Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs/query.sql' 2025-03-21T20:24:47.5374035Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs' 2025-03-21T20:24:47.5375093Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs_aggregate/params.json' 2025-03-21T20:24:47.5376196Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs_aggregate/query.sql' 2025-03-21T20:24:47.5377282Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs_aggregate' 2025-03-21T20:24:47.5378369Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs_by_label/params.json' 2025-03-21T20:24:47.5379531Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs_by_label/query.sql' 2025-03-21T20:24:47.5380587Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/queued_jobs_by_label' 2025-03-21T20:24:47.5381696Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/recent_pr_workflows_query/params.json' 2025-03-21T20:24:47.5382832Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/recent_pr_workflows_query/query.sql' 2025-03-21T20:24:47.5383952Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/recent_pr_workflows_query' 2025-03-21T20:24:47.5385006Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/reverts/params.json' 2025-03-21T20:24:47.5385985Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/reverts/query.sql' 2025-03-21T20:24:47.5386951Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/reverts' 2025-03-21T20:24:47.5387965Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization/params.json' 2025-03-21T20:24:47.5389050Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization/query.sql' 2025-03-21T20:24:47.5390118Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization' 2025-03-21T20:24:47.5391236Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization_by_activity/params.json' 2025-03-21T20:24:47.5392417Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization_by_activity/query.sql' 2025-03-21T20:24:47.5393583Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization_by_activity' 2025-03-21T20:24:47.5394741Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization_by_repo/params.json' 2025-03-21T20:24:47.5395962Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization_by_repo/query.sql' 2025-03-21T20:24:47.5397136Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/runner_utilization_by_repo' 2025-03-21T20:24:47.5398238Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/strict_lag_historical/params.json' 2025-03-21T20:24:47.5399337Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/strict_lag_historical/query.sql' 2025-03-21T20:24:47.5400420Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/strict_lag_historical' 2025-03-21T20:24:47.5401480Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/strict_lag_sec/params.json' 2025-03-21T20:24:47.5402522Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/strict_lag_sec/query.sql' 2025-03-21T20:24:47.5403550Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/strict_lag_sec' 2025-03-21T20:24:47.5404570Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStats3d/params.json' 2025-03-21T20:24:47.5405573Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStats3d/query.sql' 2025-03-21T20:24:47.5406573Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStats3d' 2025-03-21T20:24:47.5407637Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStatsDistinctCount/params.json' 2025-03-21T20:24:47.5408761Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStatsDistinctCount/query.sql' 2025-03-21T20:24:47.5409875Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStatsDistinctCount' 2025-03-21T20:24:47.5410963Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStatsSearch/params.json' 2025-03-21T20:24:47.5412029Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStatsSearch/query.sql' 2025-03-21T20:24:47.5413072Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/testStatsSearch' 2025-03-21T20:24:47.5414128Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_class/params.json' 2025-03-21T20:24:47.5415220Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_class/query.sql' 2025-03-21T20:24:47.5416298Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_class' 2025-03-21T20:24:47.5417445Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_class_periodic_jobs/params.json' 2025-03-21T20:24:47.5418729Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_class_periodic_jobs/query.sql' 2025-03-21T20:24:47.5419929Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_class_periodic_jobs' 2025-03-21T20:24:47.5421061Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_file/params.json' 2025-03-21T20:24:47.5422140Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_file/query.sql' 2025-03-21T20:24:47.5423304Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_file' 2025-03-21T20:24:47.5424430Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_file_periodic_jobs/params.json' 2025-03-21T20:24:47.5425623Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_file_periodic_jobs/query.sql' 2025-03-21T20:24:47.5426799Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/test_time_per_file_periodic_jobs' 2025-03-21T20:24:47.5427915Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/time_to_signal/params.json' 2025-03-21T20:24:47.5428960Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/time_to_signal/query.sql' 2025-03-21T20:24:47.5429986Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/time_to_signal' 2025-03-21T20:24:47.5431008Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchao_query/params.json' 2025-03-21T20:24:47.5432021Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchao_query/query.sql' 2025-03-21T20:24:47.5433039Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchao_query' 2025-03-21T20:24:47.5434098Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchao_query_branches/params.json' 2025-03-21T20:24:47.5435205Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchao_query_branches/query.sql' 2025-03-21T20:24:47.5436298Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchao_query_branches' 2025-03-21T20:24:47.5437438Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_list_userbenchmarks/params.json' 2025-03-21T20:24:47.5438612Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_list_userbenchmarks/query.sql' 2025-03-21T20:24:47.5439782Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_list_userbenchmarks' 2025-03-21T20:24:47.5440974Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_userbenchmark_list_commits/params.json' 2025-03-21T20:24:47.5442209Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_userbenchmark_list_commits/query.sql' 2025-03-21T20:24:47.5443442Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_userbenchmark_list_commits' 2025-03-21T20:24:47.5444677Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_userbenchmark_query_metrics/params.json' 2025-03-21T20:24:47.5445923Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_userbenchmark_query_metrics/query.sql' 2025-03-21T20:24:47.5447146Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/torchbench_userbenchmark_query_metrics' 2025-03-21T20:24:47.5448296Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/ttrs_percentiles/params.json' 2025-03-21T20:24:47.5449423Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/ttrs_percentiles/query.sql' 2025-03-21T20:24:47.5450508Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/ttrs_percentiles' 2025-03-21T20:24:47.5451520Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_avg/params.json' 2025-03-21T20:24:47.5452502Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_avg/query.sql' 2025-03-21T20:24:47.5453474Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_avg' 2025-03-21T20:24:47.5454523Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_duration_historical/params.json' 2025-03-21T20:24:47.5455638Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_duration_historical/query.sql' 2025-03-21T20:24:47.5456748Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_duration_historical' 2025-03-21T20:24:47.5457907Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_duration_historical_percentile/params.json' 2025-03-21T20:24:47.5459202Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_duration_historical_percentile/query.sql' 2025-03-21T20:24:47.5460404Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_duration_historical_percentile' 2025-03-21T20:24:47.5461732Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_percentile/params.json' 2025-03-21T20:24:47.5462778Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_percentile/query.sql' 2025-03-21T20:24:47.5463810Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/tts_percentile' 2025-03-21T20:24:47.5464903Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/unique_repos_in_runnercost/params.json' 2025-03-21T20:24:47.5466040Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/unique_repos_in_runnercost/query.sql' 2025-03-21T20:24:47.5467168Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/unique_repos_in_runnercost' 2025-03-21T20:24:47.5468300Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/validation_jobs_red_past_day/params.json' 2025-03-21T20:24:47.5469452Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/validation_jobs_red_past_day/query.sql' 2025-03-21T20:24:47.5470601Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/validation_jobs_red_past_day' 2025-03-21T20:24:47.5471737Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/weekly_force_merge_stats/params.json' 2025-03-21T20:24:47.5472857Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/weekly_force_merge_stats/query.sql' 2025-03-21T20:24:47.5473971Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/weekly_force_merge_stats' 2025-03-21T20:24:47.5475077Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_duration_avg/params.json' 2025-03-21T20:24:47.5476172Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_duration_avg/query.sql' 2025-03-21T20:24:47.5477358Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_duration_avg' 2025-03-21T20:24:47.5478570Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_duration_percentile/params.json' 2025-03-21T20:24:47.5479724Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_duration_percentile/query.sql' 2025-03-21T20:24:47.5480872Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_duration_percentile' 2025-03-21T20:24:47.5481970Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_load/params.json' 2025-03-21T20:24:47.5483003Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_load/query.sql' 2025-03-21T20:24:47.5484021Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries/workflow_load' 2025-03-21T20:24:47.5484981Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/clickhouse_queries' 2025-03-21T20:24:47.5485939Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/AnnouncementBanner.module.css' 2025-03-21T20:24:47.5486939Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/AnnouncementBanner.tsx' 2025-03-21T20:24:47.5487887Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/CheckBoxSelector.tsx' 2025-03-21T20:24:47.5488812Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/CommitStatus.tsx' 2025-03-21T20:24:47.5489699Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/CopyLink.tsx' 2025-03-21T20:24:47.5490582Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/DrCIButton.tsx' 2025-03-21T20:24:47.5491480Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/DynamicTitle.tsx' 2025-03-21T20:24:47.5492376Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/ErrorBoundary.tsx' 2025-03-21T20:24:47.5493298Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/FilteredJobList.tsx' 2025-03-21T20:24:47.5494238Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/GranularityPicker.tsx' 2025-03-21T20:24:47.5495205Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/GroupHudTableHeaders.tsx' 2025-03-21T20:24:47.5496242Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/GroupJobConclusion.tsx' 2025-03-21T20:24:47.5497204Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobAnnotationToggle.tsx' 2025-03-21T20:24:47.5498138Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobArtifact.tsx' 2025-03-21T20:24:47.5499152Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobConclusion.module.css' 2025-03-21T20:24:47.5500099Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobConclusion.tsx' 2025-03-21T20:24:47.5501037Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobFilterInput.tsx' 2025-03-21T20:24:47.5501968Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobLinks.module.css' 2025-03-21T20:24:47.5502947Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobLinks.tsx' 2025-03-21T20:24:47.5503834Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobSummary.tsx' 2025-03-21T20:24:47.5504781Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/JobTooltip.tsx' 2025-03-21T20:24:47.5505667Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/LoadingPage.tsx' 2025-03-21T20:24:47.5506601Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/LogAnnotationToggle.tsx' 2025-03-21T20:24:47.5507530Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/LogViewer.tsx' 2025-03-21T20:24:47.5508460Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/LoginSection.module.css' 2025-03-21T20:24:47.5509397Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/LoginSection.tsx' 2025-03-21T20:24:47.5510329Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/MultiSelectPicker.tsx' 2025-03-21T20:24:47.5511266Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/NavBar.module.css' 2025-03-21T20:24:47.5512138Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/NavBar.tsx' 2025-03-21T20:24:47.5513021Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/PageSelector.tsx' 2025-03-21T20:24:47.5513962Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/ReproductionCommand.tsx' 2025-03-21T20:24:47.5514919Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/SevReport.module.css' 2025-03-21T20:24:47.5515835Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/SevReport.tsx' 2025-03-21T20:24:47.5516781Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/ThemeModePicker.module.css' 2025-03-21T20:24:47.5517759Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/ThemeModePicker.tsx' 2025-03-21T20:24:47.5518651Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/TimeUtils.tsx' 2025-03-21T20:24:47.5519577Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/TooltipTarget.module.css' 2025-03-21T20:24:47.5520519Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/TooltipTarget.tsx' 2025-03-21T20:24:47.5521425Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/ValuePicker.tsx' 2025-03-21T20:24:47.5522350Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/VersionControlLinks.tsx' 2025-03-21T20:24:47.5523278Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/WorkflowBox.tsx' 2025-03-21T20:24:47.5524205Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/WorkflowDispatcher.tsx' 2025-03-21T20:24:47.5525197Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/additionalTestInfo/RerunInfo.tsx' 2025-03-21T20:24:47.5526260Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/additionalTestInfo/TestCounts.tsx' 2025-03-21T20:24:47.5527346Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/additionalTestInfo/TestInfo.module.css' 2025-03-21T20:24:47.5528419Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/additionalTestInfo/TestInfo.tsx' 2025-03-21T20:24:47.5529530Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/additionalTestInfo' 2025-03-21T20:24:47.5530627Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/BranchAndCommitPicker.tsx' 2025-03-21T20:24:47.5531670Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/CommitPanel.tsx' 2025-03-21T20:24:47.5532827Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/HighlightMenu.tsx' 2025-03-21T20:24:47.5533848Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/ModeAndDTypePicker.tsx' 2025-03-21T20:24:47.5534841Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/common.tsx' 2025-03-21T20:24:47.5535855Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/BenchmarkLogs.tsx' 2025-03-21T20:24:47.5536980Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/CompilerGraphGroup.tsx' 2025-03-21T20:24:47.5538085Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/LogLinks.tsx' 2025-03-21T20:24:47.5539270Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/ModelGraphPanel.tsx' 2025-03-21T20:24:47.5540367Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/ModelPanel.tsx' 2025-03-21T20:24:47.5541425Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/SuitePicker.tsx' 2025-03-21T20:24:47.5542536Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/SummaryGraphPanel.tsx' 2025-03-21T20:24:47.5543657Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/SummaryPanel.tsx' 2025-03-21T20:24:47.5544715Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers/common.tsx' 2025-03-21T20:24:47.5545723Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/compilers' 2025-03-21T20:24:47.5546772Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/LLMsBenchmarkPage.tsx' 2025-03-21T20:24:47.5547956Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components/LLMsGraphPanel.tsx' 2025-03-21T20:24:47.5549103Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components/LLMsReport.tsx' 2025-03-21T20:24:47.5550245Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components/LLMsSummaryPanel.tsx' 2025-03-21T20:24:47.5551535Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components/dashboardPicker/LLMsDashboardPicker.tsx' 2025-03-21T20:24:47.5552899Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components/dashboardPicker/LLMsDropdownGroup.tsx' 2025-03-21T20:24:47.5554261Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components/dashboardPicker/LLMsTimeRangePicker.tsx' 2025-03-21T20:24:47.5555552Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components/dashboardPicker' 2025-03-21T20:24:47.5556680Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/components' 2025-03-21T20:24:47.5557835Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/context/BenchmarkProps.tsx' 2025-03-21T20:24:47.5558976Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms/context' 2025-03-21T20:24:47.5559972Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/llms' 2025-03-21T20:24:47.5561228Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/torchao/SuitePicker.tsx' 2025-03-21T20:24:47.5562269Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/torchao/common.tsx' 2025-03-21T20:24:47.5563260Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark/torchao' 2025-03-21T20:24:47.5564220Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/benchmark' 2025-03-21T20:24:47.5565252Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/LineChart.module.css' 2025-03-21T20:24:47.5566376Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/LineRectChart.tsx' 2025-03-21T20:24:47.5567613Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/RenderLineChartComponents.module.css' 2025-03-21T20:24:47.5568927Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/RenderLinePickerOptions.tsx' 2025-03-21T20:24:47.5570169Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/RenderSvgLine.tsx' 2025-03-21T20:24:47.5571435Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/RenderSvgLineTooltipElements.tsx' 2025-03-21T20:24:47.5572698Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/RenderSvgRect.tsx' 2025-03-21T20:24:47.5573947Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/helpers/ChartCheckboxGroups.tsx' 2025-03-21T20:24:47.5575230Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/helpers/CheckboxGroup.tsx' 2025-03-21T20:24:47.5576474Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/helpers/DropList.tsx' 2025-03-21T20:24:47.5577685Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/helpers/Tooltip.tsx' 2025-03-21T20:24:47.5578957Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component/helpers' 2025-03-21T20:24:47.5580098Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/component' 2025-03-21T20:24:47.5581184Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/lib/color.ts' 2025-03-21T20:24:47.5582248Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/lib/types.ts' 2025-03-21T20:24:47.5583305Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/lib/utils.ts' 2025-03-21T20:24:47.5584385Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart/lib' 2025-03-21T20:24:47.5585568Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts/line_rect_chart' 2025-03-21T20:24:47.5586631Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/charts' 2025-03-21T20:24:47.5587538Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/commit.module.css' 2025-03-21T20:24:47.5588460Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/common/CheckBoxList.tsx' 2025-03-21T20:24:47.5589423Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/common/DropDownList.tsx' 2025-03-21T20:24:47.5590409Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/common/TextFieldSubmit.tsx' 2025-03-21T20:24:47.5591389Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/common/ToggleGroup.tsx' 2025-03-21T20:24:47.5592318Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/common' 2025-03-21T20:24:47.5593212Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/hud.module.css' 2025-03-21T20:24:47.5594117Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/metrics.module.css' 2025-03-21T20:24:47.5595094Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/metrics/panels/ScalarPanel.tsx' 2025-03-21T20:24:47.5596117Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/metrics/panels/TablePanel.tsx' 2025-03-21T20:24:47.5597164Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/metrics/panels/TimeSeriesPanel.tsx' 2025-03-21T20:24:47.5598233Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/metrics/panels/WorkflowPicker.tsx' 2025-03-21T20:24:47.5599259Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/metrics/panels' 2025-03-21T20:24:47.5600195Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/metrics' 2025-03-21T20:24:47.5601107Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/minihud.module.css' 2025-03-21T20:24:47.5602038Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/tests/TestSearchForm.tsx' 2025-03-21T20:24:47.5602967Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/tests' 2025-03-21T20:24:47.5603971Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/UtilizationPage.module.css' 2025-03-21T20:24:47.5605050Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/UtilizationPage.tsx' 2025-03-21T20:24:47.5606152Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/SingleValueGauge.tsx' 2025-03-21T20:24:47.5607409Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/TestSectionView/RankTestView/RankBar.tsx' 2025-03-21T20:24:47.5608786Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/TestSectionView/RankTestView/RankTestView.tsx' 2025-03-21T20:24:47.5610140Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/TestSectionView/RankTestView' 2025-03-21T20:24:47.5611430Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/TestSectionView/SingleTestView.tsx' 2025-03-21T20:24:47.5612861Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/TestSectionView/TestSectionView.tsx' 2025-03-21T20:24:47.5614165Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/TestSectionView/ToggleTestsGroup.tsx' 2025-03-21T20:24:47.5615421Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/TestSectionView' 2025-03-21T20:24:47.5616756Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/UtilizationJobSummary/UtilizationJobInformation.tsx' 2025-03-21T20:24:47.5618221Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/UtilizationJobSummary/UtilizationJobSummary.tsx' 2025-03-21T20:24:47.5619653Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/UtilizationJobSummary' 2025-03-21T20:24:47.5620882Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components/UtilizationStatsTable.tsx' 2025-03-21T20:24:47.5621997Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/components' 2025-03-21T20:24:47.5622966Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/helper.ts' 2025-03-21T20:24:47.5623914Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/styles.tsx' 2025-03-21T20:24:47.5624852Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization/types.ts' 2025-03-21T20:24:47.5625790Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components/utilization' 2025-03-21T20:24:47.5626669Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/components' 2025-03-21T20:24:47.5627508Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/docs/architecture.md' 2025-03-21T20:24:47.5628320Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/docs' 2025-03-21T20:24:47.5629093Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/jest.config.js' 2025-03-21T20:24:47.5629928Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/DarkModeContext.tsx' 2025-03-21T20:24:47.5630781Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/GeneralUtils.ts' 2025-03-21T20:24:47.5631633Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/JobClassifierUtil.ts' 2025-03-21T20:24:47.5632502Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/ParamSelector.tsx' 2025-03-21T20:24:47.5633347Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/RevertModal.tsx' 2025-03-21T20:24:47.5634211Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/compilerUtils.ts' 2025-03-21T20:24:47.5635235Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-03-21T20:24:47.5635713Z + echo ::endgroup:: 2025-03-21T20:24:47.5636343Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/compliers/CompilerSuites.ts' 2025-03-21T20:24:47.5637334Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/compliers' 2025-03-21T20:24:47.5638261Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/common.ts' 2025-03-21T20:24:47.5639356Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/types/dashboardPickerTypes.ts' 2025-03-21T20:24:47.5640471Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/types/dashboardProps.ts' 2025-03-21T20:24:47.5641471Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/types' 2025-03-21T20:24:47.5642432Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/utils/aoUtils.ts' 2025-03-21T20:24:47.5643471Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/utils/dashboardPickerUtils.ts' 2025-03-21T20:24:47.5644510Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/utils/llmUtils.ts' 2025-03-21T20:24:47.5645471Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms/utils' 2025-03-21T20:24:47.5646395Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark/llms' 2025-03-21T20:24:47.5647268Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/benchmark' 2025-03-21T20:24:47.5648102Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/Constants.ts' 2025-03-21T20:24:47.5648938Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/autoCcBot.ts' 2025-03-21T20:24:47.5649791Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/autoLabelBot.ts' 2025-03-21T20:24:47.5650689Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/autoLabelCodevTrunk.ts' 2025-03-21T20:24:47.5651645Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/cancelWorkflowsOnCloseBot.ts' 2025-03-21T20:24:47.5652592Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/ciflowPushTrigger.ts' 2025-03-21T20:24:47.5653457Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/cliParser.ts' 2025-03-21T20:24:47.5654339Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/codevNoWritePermBot.ts' 2025-03-21T20:24:47.5655213Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/drciBot.ts' 2025-03-21T20:24:47.5656028Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/index.ts' 2025-03-21T20:24:47.5656851Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/pytorchBot.ts' 2025-03-21T20:24:47.5657729Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/pytorchBotHandler.ts' 2025-03-21T20:24:47.5658770Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/pytorchbotLogger.ts' 2025-03-21T20:24:47.5659630Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/retryBot.ts' 2025-03-21T20:24:47.5660501Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/stripApprovalBot.ts' 2025-03-21T20:24:47.5661677Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/subscriptions.ts' 2025-03-21T20:24:47.5662645Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/triggerCircleCIWorkflows.ts' 2025-03-21T20:24:47.5663676Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/triggerInductorTestsBot.ts' 2025-03-21T20:24:47.5664560Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/utils.ts' 2025-03-21T20:24:47.5665595Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/verifyDisableTestIssueBot.ts' 2025-03-21T20:24:47.5666601Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot/webhookToDynamo.ts' 2025-03-21T20:24:47.5667455Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/bot' 2025-03-21T20:24:47.5668271Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/chartTheme.tsx' 2025-03-21T20:24:47.5669091Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/clickhouse.ts' 2025-03-21T20:24:47.5669912Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/commitUtils.ts' 2025-03-21T20:24:47.5670724Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/drciUtils.ts' 2025-03-21T20:24:47.5671524Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/dynamo.ts' 2025-03-21T20:24:47.5672309Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/error_utils.ts' 2025-03-21T20:24:47.5673131Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchCommit.ts' 2025-03-21T20:24:47.5674027Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchDisabledNonFlakyTests.ts' 2025-03-21T20:24:47.5674935Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchFlakyTests.ts' 2025-03-21T20:24:47.5675762Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchHud.ts' 2025-03-21T20:24:47.5676599Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchIssuesByLabel.ts' 2025-03-21T20:24:47.5677437Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchPR.ts' 2025-03-21T20:24:47.5678273Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchRecentWorkflows.ts' 2025-03-21T20:24:47.5679146Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/fetchS3Links.ts' 2025-03-21T20:24:47.5679983Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/getAuthors.ts' 2025-03-21T20:24:47.5680780Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/github.ts' 2025-03-21T20:24:47.5681602Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/githubFunctions.ts' 2025-03-21T20:24:47.5682436Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/jobUtils.ts' 2025-03-21T20:24:47.5683233Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/metricUtils.ts' 2025-03-21T20:24:47.5684061Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/opensearch.ts' 2025-03-21T20:24:47.5684874Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/rateLimit.ts' 2025-03-21T20:24:47.5685662Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/s3.ts' 2025-03-21T20:24:47.5686446Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/searchLogs.ts' 2025-03-21T20:24:47.5687267Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/searchUtils.ts' 2025-03-21T20:24:47.5688194Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/tools/MeasureRenderTimeProfiler.tsx' 2025-03-21T20:24:47.5689102Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/tools' 2025-03-21T20:24:47.5689902Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/track.ts' 2025-03-21T20:24:47.5690768Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/types.ts' 2025-03-21T20:24:47.5691673Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/useGroupingPreference.tsx' 2025-03-21T20:24:47.5692549Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/useHudData.ts' 2025-03-21T20:24:47.5693366Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/useScrollTo.ts' 2025-03-21T20:24:47.5694196Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/useTableFilter.ts' 2025-03-21T20:24:47.5695190Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/utilization/fetchListUtilizationMetadataInfo.ts' 2025-03-21T20:24:47.5696278Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/utilization/fetchUtilization.test.ts' 2025-03-21T20:24:47.5697285Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/utilization/fetchUtilization.ts' 2025-03-21T20:24:47.5698211Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/utilization/types.ts' 2025-03-21T20:24:47.5699199Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib/utilization' 2025-03-21T20:24:47.5700023Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/lib' 2025-03-21T20:24:47.5700798Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/next-env.d.ts' 2025-03-21T20:24:47.5701568Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/next.config.js' 2025-03-21T20:24:47.5702350Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/package.json' 2025-03-21T20:24:47.5703263Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]/[repoName]/commit/[sha].tsx' 2025-03-21T20:24:47.5704315Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]/[repoName]/commit' 2025-03-21T20:24:47.5705392Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]/[repoName]/issues/[issueNumber].tsx' 2025-03-21T20:24:47.5706469Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]/[repoName]/issues' 2025-03-21T20:24:47.5707523Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]/[repoName]/pull/[prNumber].tsx' 2025-03-21T20:24:47.5708564Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]/[repoName]/pull' 2025-03-21T20:24:47.5709579Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5710521Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/[repoOwner]' 2025-03-21T20:24:47.5711361Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/_app.tsx' 2025-03-21T20:24:47.5712293Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/[repoOwner]/[repoName]/commit/[sha].ts' 2025-03-21T20:24:47.5713361Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/[repoOwner]/[repoName]/commit' 2025-03-21T20:24:47.5714438Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/[repoOwner]/[repoName]/pull/[prNumber].ts' 2025-03-21T20:24:47.5715499Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/[repoOwner]/[repoName]/pull' 2025-03-21T20:24:47.5716599Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5717623Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/[repoOwner]' 2025-03-21T20:24:47.5718586Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/artifacts/s3/[workflowId].ts' 2025-03-21T20:24:47.5719547Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/artifacts/s3' 2025-03-21T20:24:47.5720467Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/artifacts' 2025-03-21T20:24:47.5721382Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/auth/[...nextauth].js' 2025-03-21T20:24:47.5722263Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/auth' 2025-03-21T20:24:47.5723182Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/clickhouse/[queryName].ts' 2025-03-21T20:24:47.5724128Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/clickhouse' 2025-03-21T20:24:47.5725082Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/corresponding_workflow_id.ts' 2025-03-21T20:24:47.5726003Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/drci/drci.ts' 2025-03-21T20:24:47.5726859Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/drci' 2025-03-21T20:24:47.5727709Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/failure.ts' 2025-03-21T20:24:47.5728592Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/flaky-tests/3dStats.ts' 2025-03-21T20:24:47.5729531Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/flaky-tests/disable.ts' 2025-03-21T20:24:47.5730476Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/flaky-tests/failures.ts' 2025-03-21T20:24:47.5731413Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/flaky-tests/search.ts' 2025-03-21T20:24:47.5732335Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/flaky-tests' 2025-03-21T20:24:47.5733422Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/github/dispatch/[repoOwner]/[repoName]/[workflow]/[sha].ts' 2025-03-21T20:24:47.5734676Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/github/dispatch/[repoOwner]/[repoName]/[workflow]' 2025-03-21T20:24:47.5735885Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/github/dispatch/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5736996Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/github/dispatch/[repoOwner]' 2025-03-21T20:24:47.5738048Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/github/dispatch' 2025-03-21T20:24:47.5739093Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/github/webhooks.ts' 2025-03-21T20:24:47.5739986Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/github' 2025-03-21T20:24:47.5740994Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/hud/[repoOwner]/[repoName]/[branch]/[page].ts' 2025-03-21T20:24:47.5742121Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/hud/[repoOwner]/[repoName]/[branch]' 2025-03-21T20:24:47.5743284Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/hud/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5744334Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/hud/[repoOwner]' 2025-03-21T20:24:47.5745231Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/hud' 2025-03-21T20:24:47.5746102Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/issue/[label].ts' 2025-03-21T20:24:47.5746986Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/issue' 2025-03-21T20:24:47.5748025Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/[annotation].ts' 2025-03-21T20:24:47.5749249Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/annotations/[jobIds].ts' 2025-03-21T20:24:47.5750495Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/annotations' 2025-03-21T20:24:47.5751748Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/failures/[queryParams].ts' 2025-03-21T20:24:47.5752983Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]/failures' 2025-03-21T20:24:47.5754157Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5755254Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation/[repoOwner]' 2025-03-21T20:24:47.5756259Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/job_annotation' 2025-03-21T20:24:47.5757317Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/list_utilization_metadata_info/[workflowId].ts' 2025-03-21T20:24:47.5758425Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/list_utilization_metadata_info' 2025-03-21T20:24:47.5759564Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/log_annotation/[repoOwner]/[repoName]/[annotation].ts' 2025-03-21T20:24:47.5790561Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/log_annotation/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5791888Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/log_annotation/[repoOwner]' 2025-03-21T20:24:47.5792934Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/log_annotation' 2025-03-21T20:24:47.5793831Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/search.ts' 2025-03-21T20:24:47.5794761Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/usage-log-aggregator/lambda.ts' 2025-03-21T20:24:47.5795773Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/usage-log-aggregator' 2025-03-21T20:24:47.5796854Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/utilization/[workflowId]/[jobId]/[attempt].ts' 2025-03-21T20:24:47.5797974Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/utilization/[workflowId]/[jobId]' 2025-03-21T20:24:47.5799033Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/utilization/[workflowId]' 2025-03-21T20:24:47.5800221Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api/utilization' 2025-03-21T20:24:47.5801183Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/api' 2025-03-21T20:24:47.5802138Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/benchmark/[suite]/[compiler]/[[...page]].tsx' 2025-03-21T20:24:47.5803200Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/benchmark/[suite]/[compiler]' 2025-03-21T20:24:47.5804189Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/benchmark/[suite]' 2025-03-21T20:24:47.5805117Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/benchmark/compilers.tsx' 2025-03-21T20:24:47.5806009Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/benchmark/llms.tsx' 2025-03-21T20:24:47.5806907Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/benchmark/torchao.tsx' 2025-03-21T20:24:47.5807800Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/benchmark' 2025-03-21T20:24:47.5808686Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/build_time_metrics.tsx' 2025-03-21T20:24:47.5809563Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/cost_analysis.tsx' 2025-03-21T20:24:47.5810404Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/disabled.tsx' 2025-03-21T20:24:47.5811426Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/failedjobs/[repoOwner]/[repoName]/[branch]/[[...page]].tsx' 2025-03-21T20:24:47.5812592Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/failedjobs/[repoOwner]/[repoName]/[branch]' 2025-03-21T20:24:47.5813710Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/failedjobs/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5814726Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/failedjobs/[repoOwner]' 2025-03-21T20:24:47.5815656Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/failedjobs' 2025-03-21T20:24:47.5816495Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/failure.tsx' 2025-03-21T20:24:47.5817312Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/flakytest.tsx' 2025-03-21T20:24:47.5818290Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/hud/[repoOwner]/[repoName]/[branch]/[[...page]].tsx' 2025-03-21T20:24:47.5818875Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/hud/[repoOwner]/[repoName]/[branch]' 2025-03-21T20:24:47.5819345Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/hud/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5819755Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/hud/[repoOwner]' 2025-03-21T20:24:47.5820112Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/hud' 2025-03-21T20:24:47.5820463Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/kpis.tsx' 2025-03-21T20:24:47.5820822Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/login_test.tsx' 2025-03-21T20:24:47.5821182Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/metrics.tsx' 2025-03-21T20:24:47.5821784Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/minihud/[repoOwner]/[repoName]/[branch]/[[...page]].tsx' 2025-03-21T20:24:47.5822356Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/minihud/[repoOwner]/[repoName]/[branch]' 2025-03-21T20:24:47.5822830Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/minihud/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5823265Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/minihud/[repoOwner]' 2025-03-21T20:24:47.5823640Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/minihud' 2025-03-21T20:24:47.5824011Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/nightlies.tsx' 2025-03-21T20:24:47.5824430Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/query_execution_metrics.tsx' 2025-03-21T20:24:47.5824959Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/reliability/[repoOwner]/[repoName]/[[...page]].tsx' 2025-03-21T20:24:47.5825457Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/reliability/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5825901Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/reliability/[repoOwner]' 2025-03-21T20:24:47.5826302Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/reliability' 2025-03-21T20:24:47.5826635Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/sli.tsx' 2025-03-21T20:24:47.5827012Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tests/search.tsx' 2025-03-21T20:24:47.5827393Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tests/testInfo.tsx' 2025-03-21T20:24:47.5827768Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tests' 2025-03-21T20:24:47.5828199Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/torchbench/userbenchmark.tsx' 2025-03-21T20:24:47.5828594Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/torchbench' 2025-03-21T20:24:47.5829105Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tts/[repoOwner]/[repoName]/[branch]/[[...page]].tsx' 2025-03-21T20:24:47.5829605Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tts/[repoOwner]/[repoName]/[branch]' 2025-03-21T20:24:47.5830059Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tts/[repoOwner]/[repoName]' 2025-03-21T20:24:47.5830472Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tts/[repoOwner]' 2025-03-21T20:24:47.5830843Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/tts' 2025-03-21T20:24:47.5831390Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/utilization/[workflowId]/[jobId]/[attempt]/[[...page]].tsx' 2025-03-21T20:24:47.5831922Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/utilization/[workflowId]/[jobId]/[attempt]' 2025-03-21T20:24:47.5832396Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/utilization/[workflowId]/[jobId]' 2025-03-21T20:24:47.5832859Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/utilization/[workflowId]' 2025-03-21T20:24:47.5833252Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages/utilization' 2025-03-21T20:24:47.5833729Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/pages' 2025-03-21T20:24:47.5834188Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/public/failures_spritesheet.png' 2025-03-21T20:24:47.5834560Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/public/favicon.ico' 2025-03-21T20:24:47.5834902Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/public' 2025-03-21T20:24:47.5835284Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/scripts/backfillJobs.mjs' 2025-03-21T20:24:47.5835701Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/scripts/updateQueueTimes.mjs' 2025-03-21T20:24:47.5836045Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/scripts' 2025-03-21T20:24:47.5836464Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/styles/MuiThemeOverrides.tsx' 2025-03-21T20:24:47.5836819Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/styles/globals.css' 2025-03-21T20:24:47.5837170Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/styles' 2025-03-21T20:24:47.5837544Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/autoCcBot.test.ts' 2025-03-21T20:24:47.5837943Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/autoLabelBot.test.ts' 2025-03-21T20:24:47.5838365Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/autoLabelCodevTrunk.test.ts' 2025-03-21T20:24:47.5838814Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/cancelWorkflowsOnCloseBot.test.ts' 2025-03-21T20:24:47.5839247Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/ciflow-push-trigger.test.ts' 2025-03-21T20:24:47.5839641Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/closeCommands.test.ts' 2025-03-21T20:24:47.5840074Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/codevNoWritePermBot.test.ts' 2025-03-21T20:24:47.5840409Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/common.ts' 2025-03-21T20:24:47.5840821Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/disableFlakyBot.test.ts' 2025-03-21T20:24:47.5841171Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/drci.test.ts' 2025-03-21T20:24:47.5841538Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/drciBot.test.ts' 2025-03-21T20:24:47.5841910Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/drciUtils.test.ts' 2025-03-21T20:24:47.5842307Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/config.json' 2025-03-21T20:24:47.5842688Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/issue.json' 2025-03-21T20:24:47.5843105Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/issue_comment.json' 2025-03-21T20:24:47.5843537Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/issues.labeled.json' 2025-03-21T20:24:47.5843949Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/issues.opened.json' 2025-03-21T20:24:47.5844365Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/known_labels.json' 2025-03-21T20:24:47.5844769Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_files.json' 2025-03-21T20:24:47.5845294Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request.closed.json' 2025-03-21T20:24:47.5845780Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request.edited.json' 2025-03-21T20:24:47.5846234Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request.labeled.json' 2025-03-21T20:24:47.5846671Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request.opened.json' 2025-03-21T20:24:47.5847133Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request.reopened.json' 2025-03-21T20:24:47.5847611Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request.synchronize.json' 2025-03-21T20:24:47.5848061Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request_comment.json' 2025-03-21T20:24:47.5848511Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request_review.json' 2025-03-21T20:24:47.5848992Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request_review_approved.json' 2025-03-21T20:24:47.5849443Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/pull_request_reviews.json' 2025-03-21T20:24:47.5849904Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/push-trigger/permission.json' 2025-03-21T20:24:47.5850418Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/push-trigger/pull_request.closed.json' 2025-03-21T20:24:47.5850924Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/push-trigger/pull_request.labeled.json' 2025-03-21T20:24:47.5851467Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/push-trigger/pull_request.synchronize.json' 2025-03-21T20:24:47.5851980Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/push-trigger/pull_request.unlabeled.json' 2025-03-21T20:24:47.5852418Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/push-trigger' 2025-03-21T20:24:47.5852794Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/push.json' 2025-03-21T20:24:47.5853287Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/webhookToDynamoExpected.json.gz' 2025-03-21T20:24:47.5853727Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/workflow_job.queued.json' 2025-03-21T20:24:47.5854145Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/workflow_jobs.json' 2025-03-21T20:24:47.5854617Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures/workflow_run.completed.json' 2025-03-21T20:24:47.5854993Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/fixtures' 2025-03-21T20:24:47.5855372Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/jobUtils.test.ts' 2025-03-21T20:24:47.5855764Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/labelCommands.test.ts' 2025-03-21T20:24:47.5856167Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/mergeCommands.test.ts' 2025-03-21T20:24:47.5856549Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/metricUtils.test.ts' 2025-03-21T20:24:47.5856959Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/reporter.js' 2025-03-21T20:24:47.5857374Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/retryBot.test.ts' 2025-03-21T20:24:47.5857769Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/searchUtils.test.ts' 2025-03-21T20:24:47.5858097Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/setup.ts' 2025-03-21T20:24:47.5858492Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/stripApprovals.test.ts' 2025-03-21T20:24:47.5858995Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/subscriptions.test.ts' 2025-03-21T20:24:47.5859444Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/triggerCircleCIWorkflows.test.ts' 2025-03-21T20:24:47.5859899Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/triggerInductorTestsBot.test.ts' 2025-03-21T20:24:47.5860256Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/utils.test.ts' 2025-03-21T20:24:47.5860600Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/utils.ts' 2025-03-21T20:24:47.5861301Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/verifyDisableTestIssue.test.ts' 2025-03-21T20:24:47.5861732Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test/wehookToDynamoBot.test.ts' 2025-03-21T20:24:47.5862064Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/test' 2025-03-21T20:24:47.5862400Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/tsconfig.json' 2025-03-21T20:24:47.5862777Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/types/next-auth-d.ts' 2025-03-21T20:24:47.5863122Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/types' 2025-03-21T20:24:47.5863456Z removed '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci/yarn.lock' 2025-03-21T20:24:47.5863771Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/torchci' 2025-03-21T20:24:47.5864071Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-03-21T20:24:47.5864346Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch' 2025-03-21T20:24:47.5864603Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-03-21T20:24:47.5865587Z ##[endgroup] 2025-03-21T20:24:47.5985228Z ##[group]Run actions/checkout@v4 2025-03-21T20:24:47.5985359Z with: 2025-03-21T20:24:47.5985510Z repository: pytorch/test-infra 2025-03-21T20:24:47.5985635Z path: test-infra 2025-03-21T20:24:47.5985755Z submodules: recursive 2025-03-21T20:24:47.5986020Z token: *** 2025-03-21T20:24:47.5986121Z ssh-strict: true 2025-03-21T20:24:47.5986233Z ssh-user: git 2025-03-21T20:24:47.5986346Z persist-credentials: true 2025-03-21T20:24:47.5986454Z clean: true 2025-03-21T20:24:47.5986578Z sparse-checkout-cone-mode: true 2025-03-21T20:24:47.5986690Z fetch-depth: 1 2025-03-21T20:24:47.5986802Z fetch-tags: false 2025-03-21T20:24:47.5986905Z show-progress: true 2025-03-21T20:24:47.5987009Z lfs: false 2025-03-21T20:24:47.5987121Z set-safe-directory: true 2025-03-21T20:24:47.5987213Z env: 2025-03-21T20:24:47.5987371Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:47.5987488Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:47.5987600Z PR_NUMBER: 2025-03-21T20:24:47.5990483Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:47.5990800Z ##[endgroup] 2025-03-21T20:24:47.7169823Z Syncing repository: pytorch/test-infra 2025-03-21T20:24:47.7170453Z ##[group]Getting Git version info 2025-03-21T20:24:47.7170816Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-03-21T20:24:47.7171139Z [command]/usr/bin/git version 2025-03-21T20:24:47.7171257Z git version 2.47.1 2025-03-21T20:24:47.7182741Z ##[endgroup] 2025-03-21T20:24:47.7191721Z Copying '/home/ec2-user/.gitconfig' to '/home/ec2-user/actions-runner/_work/_temp/49074673-a80a-4fc3-a3fd-1f19ca3dca41/.gitconfig' 2025-03-21T20:24:47.7201073Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/49074673-a80a-4fc3-a3fd-1f19ca3dca41' before making global git config changes 2025-03-21T20:24:47.7202061Z Adding repository directory to the temporary git global config as a safe directory 2025-03-21T20:24:47.7207413Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-03-21T20:24:47.7244418Z ##[group]Initializing the repository 2025-03-21T20:24:47.7248229Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-03-21T20:24:47.7348710Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-03-21T20:24:47.7349851Z hint: is subject to change. To configure the initial branch name to use in all 2025-03-21T20:24:47.7350775Z hint: of your new repositories, which will suppress this warning, call: 2025-03-21T20:24:47.7351458Z hint: 2025-03-21T20:24:47.7351957Z hint: git config --global init.defaultBranch 2025-03-21T20:24:47.7352527Z hint: 2025-03-21T20:24:47.7353113Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-03-21T20:24:47.7354112Z hint: 'development'. The just-created branch can be renamed via this command: 2025-03-21T20:24:47.7354898Z hint: 2025-03-21T20:24:47.7355292Z hint: git branch -m 2025-03-21T20:24:47.7356610Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-03-21T20:24:47.7365059Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-03-21T20:24:47.7401118Z ##[endgroup] 2025-03-21T20:24:47.7401953Z ##[group]Disabling automatic garbage collection 2025-03-21T20:24:47.7406312Z [command]/usr/bin/git config --local gc.auto 0 2025-03-21T20:24:47.7431395Z ##[endgroup] 2025-03-21T20:24:47.7432089Z ##[group]Setting up auth 2025-03-21T20:24:47.7438364Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-03-21T20:24:47.7465001Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-03-21T20:24:47.7717696Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-03-21T20:24:47.7743865Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-03-21T20:24:47.8008752Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-03-21T20:24:47.8051431Z ##[endgroup] 2025-03-21T20:24:47.8052267Z ##[group]Determining the default branch 2025-03-21T20:24:47.8055409Z Retrieving the default branch name 2025-03-21T20:24:48.0225213Z Default branch 'main' 2025-03-21T20:24:48.0225948Z ##[endgroup] 2025-03-21T20:24:48.0226396Z ##[group]Fetching the repository 2025-03-21T20:24:48.0231836Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main:refs/remotes/origin/main 2025-03-21T20:24:48.3649748Z From https://github.com/pytorch/test-infra 2025-03-21T20:24:48.3650221Z * [new branch] main -> origin/main 2025-03-21T20:24:48.3671873Z ##[endgroup] 2025-03-21T20:24:48.3672310Z ##[group]Determining the checkout info 2025-03-21T20:24:48.3673411Z ##[endgroup] 2025-03-21T20:24:48.3678091Z [command]/usr/bin/git sparse-checkout disable 2025-03-21T20:24:48.3711469Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-03-21T20:24:48.3736331Z ##[group]Checking out the ref 2025-03-21T20:24:48.3739967Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-03-21T20:24:48.4563373Z Switched to a new branch 'main' 2025-03-21T20:24:48.4564297Z branch 'main' set up to track 'origin/main'. 2025-03-21T20:24:48.4572069Z ##[endgroup] 2025-03-21T20:24:48.4572510Z ##[group]Setting up auth for fetching submodules 2025-03-21T20:24:48.4577705Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-03-21T20:24:48.4621047Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-03-21T20:24:48.4654230Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-03-21T20:24:48.4686086Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-03-21T20:24:48.4712856Z ##[endgroup] 2025-03-21T20:24:48.4713285Z ##[group]Fetching submodules 2025-03-21T20:24:48.4716720Z [command]/usr/bin/git submodule sync --recursive 2025-03-21T20:24:48.4983548Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-03-21T20:24:48.5278590Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-03-21T20:24:48.5538064Z ##[endgroup] 2025-03-21T20:24:48.5538534Z ##[group]Persisting credentials for submodules 2025-03-21T20:24:48.5543895Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2025-03-21T20:24:48.5813381Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2025-03-21T20:24:48.6081589Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-03-21T20:24:48.6347663Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-03-21T20:24:48.6603813Z ##[endgroup] 2025-03-21T20:24:48.6640854Z [command]/usr/bin/git log -1 --format=%H 2025-03-21T20:24:48.6664215Z c1d92bc76c9d8ecf59b36ef10588c9605c8578d1 2025-03-21T20:24:48.6840162Z Prepare all required actions 2025-03-21T20:24:48.6840871Z Getting action download info 2025-03-21T20:24:48.7717929Z Download action repository 'pytorch/test-infra@main' (SHA:c1d92bc76c9d8ecf59b36ef10588c9605c8578d1) 2025-03-21T20:24:50.0857314Z Getting action download info 2025-03-21T20:24:50.1856276Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-03-21T20:24:50.3582972Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-03-21T20:24:50.3583334Z env: 2025-03-21T20:24:50.3583836Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:50.3584199Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:50.3584495Z PR_NUMBER: 2025-03-21T20:24:50.3587440Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:50.3590353Z ##[endgroup] 2025-03-21T20:24:50.3677043Z ##[group]Run set -euo pipefail 2025-03-21T20:24:50.3677413Z set -euo pipefail 2025-03-21T20:24:50.3677719Z function get_ec2_metadata() { 2025-03-21T20:24:50.3678088Z  # Pulled from instance metadata endpoint for EC2 2025-03-21T20:24:50.3678734Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-03-21T20:24:50.3679286Z  category=$1 2025-03-21T20:24:50.3680116Z  curl -H "X-aws-ec2-metadata-token: $(curl -s -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 30")" -fsSL "http://169.254.169.254/latest/meta-data/${category}" 2025-03-21T20:24:50.3680966Z } 2025-03-21T20:24:50.3681246Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-03-21T20:24:50.3681672Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-03-21T20:24:50.3682141Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-03-21T20:24:50.3682556Z echo "system info $(uname -a)" 2025-03-21T20:24:50.3688476Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:50.3688864Z env: 2025-03-21T20:24:50.3689128Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:50.3689493Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:50.3689770Z PR_NUMBER: 2025-03-21T20:24:50.3692653Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:50.3695761Z ##[endgroup] 2025-03-21T20:24:50.3827360Z ami-id: ami-08b5b3a93ed654d19 2025-03-21T20:24:50.3927014Z instance-id: i-0e1b23732c78ae632 2025-03-21T20:24:50.4020101Z instance-type: c5.2xlarge 2025-03-21T20:24:50.4030290Z system info Linux ip-10-0-63-213.ec2.internal 6.1.129-138.220.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Feb 25 22:18:43 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux 2025-03-21T20:24:50.4068251Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-03-21T20:24:50.4069148Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-03-21T20:24:50.4075506Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:50.4075872Z env: 2025-03-21T20:24:50.4076135Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:50.4076493Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:50.4076795Z PR_NUMBER: 2025-03-21T20:24:50.4079695Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:50.4082613Z ##[endgroup] 2025-03-21T20:24:50.4161624Z ##[group]Run if systemctl is-active --quiet docker; then 2025-03-21T20:24:50.4162107Z if systemctl is-active --quiet docker; then 2025-03-21T20:24:50.4162481Z  echo "Docker daemon is running..."; 2025-03-21T20:24:50.4162818Z else 2025-03-21T20:24:50.4163176Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-03-21T20:24:50.4163596Z fi 2025-03-21T20:24:50.4169475Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:50.4169859Z env: 2025-03-21T20:24:50.4170115Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:50.4170493Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:50.4170788Z PR_NUMBER: 2025-03-21T20:24:50.4173696Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:50.4176669Z ##[endgroup] 2025-03-21T20:24:50.4251362Z Docker daemon is running... 2025-03-21T20:24:50.4283065Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-03-21T20:24:50.4283719Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-03-21T20:24:50.4284238Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-03-21T20:24:50.4285002Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-03-21T20:24:50.4285708Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-03-21T20:24:50.4291712Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:50.4292097Z env: 2025-03-21T20:24:50.4292366Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:50.4292726Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:50.4293008Z PR_NUMBER: 2025-03-21T20:24:50.4296077Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:50.4299252Z AWS_RETRY_MODE: standard 2025-03-21T20:24:50.4299536Z AWS_MAX_ATTEMPTS: 5 2025-03-21T20:24:50.4299806Z AWS_DEFAULT_REGION: us-east-1 2025-03-21T20:24:50.4300100Z ##[endgroup] 2025-03-21T20:24:51.5470664Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-03-21T20:24:51.5471369Z Configure a credential helper to remove this warning. See 2025-03-21T20:24:51.5472270Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-03-21T20:24:51.5472981Z 2025-03-21T20:24:51.5473210Z Login Succeeded 2025-03-21T20:24:51.5514565Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-03-21T20:24:51.5515158Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-03-21T20:24:51.5515662Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-03-21T20:24:51.5522108Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:51.5522488Z env: 2025-03-21T20:24:51.5522752Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:51.5523110Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:51.5523419Z PR_NUMBER: 2025-03-21T20:24:51.5526304Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:51.5529216Z ##[endgroup] 2025-03-21T20:24:51.5608254Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-03-21T20:24:51.5608748Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-03-21T20:24:51.5609153Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-03-21T20:24:51.5609517Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-03-21T20:24:51.5610119Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-03-21T20:24:51.5610548Z  2025-03-21T20:24:51.5610861Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-03-21T20:24:51.5611292Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-03-21T20:24:51.5611674Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-03-21T20:24:51.5612153Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-03-21T20:24:51.5612589Z  2025-03-21T20:24:51.5612843Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-03-21T20:24:51.5613191Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-03-21T20:24:51.5613639Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-03-21T20:24:51.5614046Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-03-21T20:24:51.5619795Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:51.5620162Z env: 2025-03-21T20:24:51.5620425Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:51.5620797Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:51.5621089Z PR_NUMBER: 2025-03-21T20:24:51.5623973Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:51.5626897Z ##[endgroup] 2025-03-21T20:24:52.1270555Z ##[group]Run needs=0 2025-03-21T20:24:52.1270867Z needs=0 2025-03-21T20:24:52.1271258Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-03-21T20:24:52.1271693Z  needs=1 2025-03-21T20:24:52.1271954Z fi 2025-03-21T20:24:52.1272228Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-03-21T20:24:52.1278671Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:52.1279059Z env: 2025-03-21T20:24:52.1279325Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:52.1279700Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:52.1279982Z PR_NUMBER: 2025-03-21T20:24:52.1282909Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:52.1285943Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:52.1286519Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:52.1287046Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:52.1287437Z ##[endgroup] 2025-03-21T20:24:52.1613319Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-03-21T20:24:52.1613904Z # ignore expansion of "docker ps -q" since it could be empty 2025-03-21T20:24:52.1614333Z # shellcheck disable=SC2046 2025-03-21T20:24:52.1614665Z docker stop $(docker ps -q) || true 2025-03-21T20:24:52.1615018Z # Prune all of the docker images 2025-03-21T20:24:52.1615353Z docker system prune -af 2025-03-21T20:24:52.1621351Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:52.1621737Z env: 2025-03-21T20:24:52.1621992Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:52.1622509Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:52.1622806Z PR_NUMBER: 2025-03-21T20:24:52.1625715Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:52.1628770Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:52.1629336Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:52.1629882Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:52.1630270Z ##[endgroup] 2025-03-21T20:24:52.1881862Z "docker stop" requires at least 1 argument. 2025-03-21T20:24:52.1882518Z See 'docker stop --help'. 2025-03-21T20:24:52.1882812Z 2025-03-21T20:24:52.1883099Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-03-21T20:24:52.1883572Z 2025-03-21T20:24:52.1883768Z Stop one or more running containers 2025-03-21T20:24:52.2135801Z Total reclaimed space: 0B 2025-03-21T20:24:52.2214356Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-03-21T20:24:52.2214771Z with: 2025-03-21T20:24:52.2215245Z github-secret: *** 2025-03-21T20:24:52.2215934Z instructions: All testing is done inside the container, to start an interactive session run: docker exec -it $(docker container ps --format '{{.ID}}') bash 2025-03-21T20:24:52.2216675Z activate-with-label: false 2025-03-21T20:24:52.2216971Z label: with-ssh 2025-03-21T20:24:52.2217238Z remove-existing-keys: true 2025-03-21T20:24:52.2217532Z fail-silently: true 2025-03-21T20:24:52.2217792Z env: 2025-03-21T20:24:52.2218046Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:52.2218412Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:52.2218828Z PR_NUMBER: 2025-03-21T20:24:52.2221781Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:52.2224862Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:52.2225457Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:52.2226019Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:52.2226424Z ##[endgroup] 2025-03-21T20:24:52.3315283Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-03-21T20:24:52.3316471Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-03-21T20:24:52.3447765Z ##[group]Run actions/checkout@v4 2025-03-21T20:24:52.3448099Z with: 2025-03-21T20:24:52.3448349Z repository: pytorch/executorch 2025-03-21T20:24:52.3448642Z ref: gh-pages 2025-03-21T20:24:52.3448887Z path: pytorch/executorch 2025-03-21T20:24:52.3449160Z fetch-depth: 1 2025-03-21T20:24:52.3449534Z token: *** 2025-03-21T20:24:52.3449770Z ssh-strict: true 2025-03-21T20:24:52.3450015Z ssh-user: git 2025-03-21T20:24:52.3450256Z persist-credentials: true 2025-03-21T20:24:52.3450537Z clean: true 2025-03-21T20:24:52.3450798Z sparse-checkout-cone-mode: true 2025-03-21T20:24:52.3451164Z fetch-tags: false 2025-03-21T20:24:52.3451414Z show-progress: true 2025-03-21T20:24:52.3451652Z lfs: false 2025-03-21T20:24:52.3451892Z set-safe-directory: true 2025-03-21T20:24:52.3452159Z env: 2025-03-21T20:24:52.3452417Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:52.3452769Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:52.3453061Z PR_NUMBER: 2025-03-21T20:24:52.3455993Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:52.3459165Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:52.3459742Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:52.3460269Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:52.3460871Z ##[endgroup] 2025-03-21T20:24:52.4443058Z Syncing repository: pytorch/executorch 2025-03-21T20:24:52.4449519Z ##[group]Getting Git version info 2025-03-21T20:24:52.4450118Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-03-21T20:24:52.4477513Z [command]/usr/bin/git version 2025-03-21T20:24:52.4512190Z git version 2.47.1 2025-03-21T20:24:52.4536192Z ##[endgroup] 2025-03-21T20:24:52.4544210Z Copying '/home/ec2-user/.gitconfig' to '/home/ec2-user/actions-runner/_work/_temp/16d5fb38-a37d-4507-9cef-b55e3dd63c84/.gitconfig' 2025-03-21T20:24:52.4553090Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/16d5fb38-a37d-4507-9cef-b55e3dd63c84' before making global git config changes 2025-03-21T20:24:52.4554027Z Adding repository directory to the temporary git global config as a safe directory 2025-03-21T20:24:52.4558649Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-03-21T20:24:52.4593232Z ##[group]Initializing the repository 2025-03-21T20:24:52.4596931Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-03-21T20:24:52.4626800Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-03-21T20:24:52.4627392Z hint: is subject to change. To configure the initial branch name to use in all 2025-03-21T20:24:52.4627952Z hint: of your new repositories, which will suppress this warning, call: 2025-03-21T20:24:52.4628354Z hint: 2025-03-21T20:24:52.4628646Z hint: git config --global init.defaultBranch 2025-03-21T20:24:52.4629011Z hint: 2025-03-21T20:24:52.4629356Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-03-21T20:24:52.4630303Z hint: 'development'. The just-created branch can be renamed via this command: 2025-03-21T20:24:52.4630750Z hint: 2025-03-21T20:24:52.4630979Z hint: git branch -m 2025-03-21T20:24:52.4631581Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-03-21T20:24:52.4638843Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-03-21T20:24:52.4665994Z ##[endgroup] 2025-03-21T20:24:52.4666843Z ##[group]Disabling automatic garbage collection 2025-03-21T20:24:52.4670510Z [command]/usr/bin/git config --local gc.auto 0 2025-03-21T20:24:52.4694847Z ##[endgroup] 2025-03-21T20:24:52.4695272Z ##[group]Setting up auth 2025-03-21T20:24:52.4701202Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-03-21T20:24:52.4727417Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-03-21T20:24:52.4992958Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-03-21T20:24:52.5022592Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-03-21T20:24:52.5302714Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-03-21T20:24:52.5349867Z ##[endgroup] 2025-03-21T20:24:52.5350323Z ##[group]Fetching the repository 2025-03-21T20:24:52.5358767Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/gh-pages*:refs/remotes/origin/gh-pages* +refs/tags/gh-pages*:refs/tags/gh-pages* 2025-03-21T20:24:54.0555162Z From https://github.com/pytorch/executorch 2025-03-21T20:24:54.0555872Z * [new branch] gh-pages -> origin/gh-pages 2025-03-21T20:24:54.0556357Z * [new branch] gh-pages-v0.2.1-rc1 -> origin/gh-pages-v0.2.1-rc1 2025-03-21T20:24:54.0575147Z ##[endgroup] 2025-03-21T20:24:54.0575678Z ##[group]Determining the checkout info 2025-03-21T20:24:54.0581445Z [command]/usr/bin/git branch --list --remote origin/gh-pages 2025-03-21T20:24:54.0610449Z origin/gh-pages 2025-03-21T20:24:54.0614335Z ##[endgroup] 2025-03-21T20:24:54.0617898Z [command]/usr/bin/git sparse-checkout disable 2025-03-21T20:24:54.0646438Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-03-21T20:24:54.0669130Z ##[group]Checking out the ref 2025-03-21T20:24:54.0672741Z [command]/usr/bin/git checkout --progress --force -B gh-pages refs/remotes/origin/gh-pages 2025-03-21T20:24:54.8066323Z Switched to a new branch 'gh-pages' 2025-03-21T20:24:54.8067456Z branch 'gh-pages' set up to track 'origin/gh-pages'. 2025-03-21T20:24:54.8102454Z ##[endgroup] 2025-03-21T20:24:54.8137878Z [command]/usr/bin/git log -1 --format=%H 2025-03-21T20:24:54.8157169Z 13f8c516e451093468d7117d84bb840ab60ac634 2025-03-21T20:24:54.8349055Z Prepare all required actions 2025-03-21T20:24:54.8349640Z Getting action download info 2025-03-21T20:24:54.9335715Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-03-21T20:24:55.0708794Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-03-21T20:24:55.0709212Z with: 2025-03-21T20:24:55.0709499Z docker-image-name: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.0709878Z docker-build-dir: .ci/docker 2025-03-21T20:24:55.0710189Z working-directory: pytorch/executorch 2025-03-21T20:24:55.0710598Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-03-21T20:24:55.0711039Z force-push: false 2025-03-21T20:24:55.0711373Z env: 2025-03-21T20:24:55.0711682Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.0712036Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:55.0712495Z PR_NUMBER: 2025-03-21T20:24:55.0715423Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:55.0718482Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:55.0719066Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:55.0719606Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:55.0719979Z ##[endgroup] 2025-03-21T20:24:55.0743603Z ##[group]Run set -ex 2025-03-21T20:24:55.0743938Z set -ex 2025-03-21T20:24:55.0744183Z  2025-03-21T20:24:55.0744588Z # If the docker build directory or the build script doesn't exist, the action will 2025-03-21T20:24:55.0745230Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-03-21T20:24:55.0745788Z # job could then download the pre-built image as usual 2025-03-21T20:24:55.0746296Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/build.sh" ]]; then 2025-03-21T20:24:55.0746748Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-03-21T20:24:55.0747192Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-03-21T20:24:55.0747616Z  2025-03-21T20:24:55.0747982Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2025-03-21T20:24:55.0748415Z  exit 0 2025-03-21T20:24:55.0748638Z else 2025-03-21T20:24:55.0748910Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-03-21T20:24:55.0749243Z fi 2025-03-21T20:24:55.0749465Z  2025-03-21T20:24:55.0749804Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-03-21T20:24:55.0750384Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-03-21T20:24:55.0750894Z  # use it as it is, but first let's extract the tag 2025-03-21T20:24:55.0751369Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-03-21T20:24:55.0751866Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-03-21T20:24:55.0752346Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-03-21T20:24:55.0752919Z else 2025-03-21T20:24:55.0753243Z  DOCKER_TAG=$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-03-21T20:24:55.0753684Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-03-21T20:24:55.0754301Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-03-21T20:24:55.0754844Z fi 2025-03-21T20:24:55.0760605Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:55.0761234Z env: 2025-03-21T20:24:55.0761509Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.0761854Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:55.0762153Z PR_NUMBER: 2025-03-21T20:24:55.0765033Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:55.0768231Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:55.0768793Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:55.0769332Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:55.0769733Z REPO_NAME: executorch 2025-03-21T20:24:55.0770172Z DOCKER_IMAGE_NAME: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.0770697Z DOCKER_BUILD_DIR: .ci/docker 2025-03-21T20:24:55.0771329Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-03-21T20:24:55.0772036Z ##[endgroup] 2025-03-21T20:24:55.0799496Z + [[ ! -d .ci/docker ]] 2025-03-21T20:24:55.0799772Z + echo skip=true 2025-03-21T20:24:55.0800461Z + echo docker-image=pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.0800993Z + echo 'There is no Docker build script in executorch repo, skipping...' 2025-03-21T20:24:55.0801391Z + exit 0 2025-03-21T20:24:55.0801709Z There is no Docker build script in executorch repo, skipping... 2025-03-21T20:24:55.0837669Z ##[group]Run set -eux 2025-03-21T20:24:55.0837988Z set -eux 2025-03-21T20:24:55.0838822Z aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token | jq --raw-output '.SecretString' | jq -r .docker_hub_readonly_token | docker login --username pytorchbot --password-stdin 2025-03-21T20:24:55.0844623Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:55.0845011Z env: 2025-03-21T20:24:55.0845280Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.0845641Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:55.0845934Z PR_NUMBER: 2025-03-21T20:24:55.0848982Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:55.0852073Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:55.0852662Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:55.0853201Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:55.0853600Z ##[endgroup] 2025-03-21T20:24:55.0878925Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-03-21T20:24:55.0879769Z + jq --raw-output .SecretString 2025-03-21T20:24:55.0881589Z + jq -r .docker_hub_readonly_token 2025-03-21T20:24:55.0882644Z + docker login --username pytorchbot --password-stdin 2025-03-21T20:24:55.7087520Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-03-21T20:24:55.7088539Z Configure a credential helper to remove this warning. See 2025-03-21T20:24:55.7089384Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-03-21T20:24:55.7090071Z 2025-03-21T20:24:55.7090198Z Login Succeeded 2025-03-21T20:24:55.7180486Z Prepare all required actions 2025-03-21T20:24:55.7215058Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-03-21T20:24:55.7215457Z with: 2025-03-21T20:24:55.7215719Z docker-image: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.7216162Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-03-21T20:24:55.7216549Z env: 2025-03-21T20:24:55.7216812Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.7217170Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:55.7217453Z PR_NUMBER: 2025-03-21T20:24:55.7220521Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:55.7223621Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:55.7224211Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:55.7224745Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:55.7225141Z ##[endgroup] 2025-03-21T20:24:55.7243548Z ##[group]Run set -x 2025-03-21T20:24:55.7243853Z set -x 2025-03-21T20:24:55.7244097Z set +e 2025-03-21T20:24:55.7244322Z  2025-03-21T20:24:55.7244622Z login() { 2025-03-21T20:24:55.7245218Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-03-21T20:24:55.7245736Z } 2025-03-21T20:24:55.7245963Z  2025-03-21T20:24:55.7246252Z retry () { 2025-03-21T20:24:55.7246540Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-03-21T20:24:55.7246943Z } 2025-03-21T20:24:55.7247247Z  2025-03-21T20:24:55.7247543Z retry login "${DOCKER_REGISTRY}" 2025-03-21T20:24:55.7247846Z  2025-03-21T20:24:55.7248066Z set -e 2025-03-21T20:24:55.7248419Z # ignore output since only exit code is used for conditional 2025-03-21T20:24:55.7248920Z # only pull docker image if it's not available locally 2025-03-21T20:24:55.7249452Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-03-21T20:24:55.7249945Z  retry docker pull "${DOCKER_IMAGE}" 2025-03-21T20:24:55.7250272Z fi 2025-03-21T20:24:55.7256146Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:24:55.7256528Z env: 2025-03-21T20:24:55.7256796Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:24:55.7257174Z REPOSITORY: pytorch/executorch 2025-03-21T20:24:55.7257462Z PR_NUMBER: 2025-03-21T20:24:55.7260859Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:24:55.7264108Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:24:55.7264691Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:24:55.7265235Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:24:55.7265704Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-03-21T20:24:55.7266097Z ##[endgroup] 2025-03-21T20:24:55.7291071Z + set +e 2025-03-21T20:24:55.7291766Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-03-21T20:24:55.7292248Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-03-21T20:24:55.7294862Z + aws ecr get-login-password --region us-east-1 2025-03-21T20:24:55.7296246Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-03-21T20:24:56.2707318Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-03-21T20:24:56.2708080Z Configure a credential helper to remove this warning. See 2025-03-21T20:24:56.2708647Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-03-21T20:24:56.2709133Z 2025-03-21T20:24:56.2709281Z Login Succeeded 2025-03-21T20:24:56.2727118Z + set -e 2025-03-21T20:24:56.2727744Z + docker inspect --type=image pytorch/almalinux-builder:cpu 2025-03-21T20:24:56.2863823Z + retry docker pull pytorch/almalinux-builder:cpu 2025-03-21T20:24:56.2864563Z + docker pull pytorch/almalinux-builder:cpu 2025-03-21T20:24:56.4707646Z cpu: Pulling from pytorch/almalinux-builder 2025-03-21T20:24:56.4708255Z 99567ad9a0f9: Pulling fs layer 2025-03-21T20:24:56.4708574Z 5dce1fed99d2: Pulling fs layer 2025-03-21T20:24:56.4708876Z 553a423be41a: Pulling fs layer 2025-03-21T20:24:56.4709272Z 0a5a427e6402: Pulling fs layer 2025-03-21T20:24:56.4709574Z d3bccc323bd9: Pulling fs layer 2025-03-21T20:24:56.4709855Z c98908cdf4a6: Pulling fs layer 2025-03-21T20:24:56.4710155Z 4f4fb700ef54: Pulling fs layer 2025-03-21T20:24:56.4710491Z d39ce81f0840: Pulling fs layer 2025-03-21T20:24:56.4710782Z 90fcabac5179: Pulling fs layer 2025-03-21T20:24:56.4711072Z 2cba562b46f9: Pulling fs layer 2025-03-21T20:24:56.4711350Z d639aa29bdf5: Pulling fs layer 2025-03-21T20:24:56.4711640Z 01c375f6caff: Pulling fs layer 2025-03-21T20:24:56.4711933Z da345ada678f: Pulling fs layer 2025-03-21T20:24:56.4712222Z 41d178d86c35: Pulling fs layer 2025-03-21T20:24:56.4712514Z b6d5dd22c7a1: Pulling fs layer 2025-03-21T20:24:56.4712794Z 077c98c2af6c: Pulling fs layer 2025-03-21T20:24:56.4713121Z 01c375f6caff: Waiting 2025-03-21T20:24:56.4713376Z c98908cdf4a6: Waiting 2025-03-21T20:24:56.4713631Z da345ada678f: Waiting 2025-03-21T20:24:56.4713879Z 41d178d86c35: Waiting 2025-03-21T20:24:56.4714116Z 2cba562b46f9: Waiting 2025-03-21T20:24:56.4714373Z 4f4fb700ef54: Waiting 2025-03-21T20:24:56.4714622Z d39ce81f0840: Waiting 2025-03-21T20:24:56.4714868Z d639aa29bdf5: Waiting 2025-03-21T20:24:56.4715119Z b6d5dd22c7a1: Waiting 2025-03-21T20:24:56.4715354Z 90fcabac5179: Waiting 2025-03-21T20:24:56.4715605Z 077c98c2af6c: Waiting 2025-03-21T20:24:56.4715855Z 0a5a427e6402: Waiting 2025-03-21T20:24:56.4716101Z d3bccc323bd9: Waiting 2025-03-21T20:24:56.6491408Z 553a423be41a: Verifying Checksum 2025-03-21T20:24:56.6491945Z 553a423be41a: Download complete 2025-03-21T20:24:57.2696682Z 99567ad9a0f9: Download complete 2025-03-21T20:24:57.3242568Z d3bccc323bd9: Verifying Checksum 2025-03-21T20:24:57.3243209Z d3bccc323bd9: Download complete 2025-03-21T20:24:57.7012409Z 5dce1fed99d2: Verifying Checksum 2025-03-21T20:24:57.7013265Z 5dce1fed99d2: Download complete 2025-03-21T20:24:57.7433720Z 4f4fb700ef54: Verifying Checksum 2025-03-21T20:24:57.7434155Z 4f4fb700ef54: Download complete 2025-03-21T20:24:58.1325395Z d39ce81f0840: Verifying Checksum 2025-03-21T20:24:58.1326158Z d39ce81f0840: Download complete 2025-03-21T20:24:58.1404757Z c98908cdf4a6: Verifying Checksum 2025-03-21T20:24:58.1405227Z c98908cdf4a6: Download complete 2025-03-21T20:24:58.2422068Z 90fcabac5179: Download complete 2025-03-21T20:24:58.2872296Z d639aa29bdf5: Verifying Checksum 2025-03-21T20:24:58.2872829Z d639aa29bdf5: Download complete 2025-03-21T20:24:58.3720588Z 01c375f6caff: Download complete 2025-03-21T20:24:58.4445222Z da345ada678f: Verifying Checksum 2025-03-21T20:24:58.4445776Z da345ada678f: Download complete 2025-03-21T20:24:58.8132947Z 41d178d86c35: Verifying Checksum 2025-03-21T20:24:58.8133452Z 41d178d86c35: Download complete 2025-03-21T20:24:58.8664950Z b6d5dd22c7a1: Verifying Checksum 2025-03-21T20:24:58.8665611Z b6d5dd22c7a1: Download complete 2025-03-21T20:24:59.4276678Z 99567ad9a0f9: Pull complete 2025-03-21T20:25:00.0091610Z 0a5a427e6402: Download complete 2025-03-21T20:25:00.6199065Z 5dce1fed99d2: Pull complete 2025-03-21T20:25:00.7888226Z 553a423be41a: Pull complete 2025-03-21T20:25:04.9298827Z 2cba562b46f9: Verifying Checksum 2025-03-21T20:25:04.9299209Z 2cba562b46f9: Download complete 2025-03-21T20:25:06.1806689Z 0a5a427e6402: Pull complete 2025-03-21T20:25:06.3657337Z d3bccc323bd9: Pull complete 2025-03-21T20:25:07.7091887Z c98908cdf4a6: Pull complete 2025-03-21T20:25:07.8357611Z 4f4fb700ef54: Pull complete 2025-03-21T20:25:08.1710080Z d39ce81f0840: Pull complete 2025-03-21T20:25:08.3322992Z 90fcabac5179: Pull complete 2025-03-21T20:25:08.4745984Z 077c98c2af6c: Verifying Checksum 2025-03-21T20:25:08.4746560Z 077c98c2af6c: Download complete 2025-03-21T20:25:19.0855045Z 2cba562b46f9: Pull complete 2025-03-21T20:25:19.1002586Z d639aa29bdf5: Pull complete 2025-03-21T20:25:19.1190212Z 01c375f6caff: Pull complete 2025-03-21T20:25:19.1388181Z da345ada678f: Pull complete 2025-03-21T20:25:19.4088765Z 41d178d86c35: Pull complete 2025-03-21T20:25:19.4508244Z b6d5dd22c7a1: Pull complete 2025-03-21T20:25:33.0351742Z 077c98c2af6c: Pull complete 2025-03-21T20:25:33.0484959Z Digest: sha256:ccf8679c6fbd01378ea001a509838453253c5acff1a2e6126de6cd164628d096 2025-03-21T20:25:33.0525710Z Status: Downloaded newer image for pytorch/almalinux-builder:cpu 2025-03-21T20:25:33.0551977Z docker.io/pytorch/almalinux-builder:cpu 2025-03-21T20:25:33.0592830Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-03-21T20:25:33.0593753Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-03-21T20:25:33.0600463Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:25:33.0600857Z env: 2025-03-21T20:25:33.0601139Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:33.0601504Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:33.0601806Z PR_NUMBER: 2025-03-21T20:25:33.0604754Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:33.0607960Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:33.0608543Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:33.0609096Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:33.0609495Z ##[endgroup] 2025-03-21T20:25:33.0699421Z ##[group]Run actions/download-artifact@v4 2025-03-21T20:25:33.0699832Z with: 2025-03-21T20:25:33.0700149Z name: docs 2025-03-21T20:25:33.0700482Z path: /home/ec2-user/actions-runner/_work/_temp/artifacts/ 2025-03-21T20:25:33.0700874Z merge-multiple: false 2025-03-21T20:25:33.0701150Z repository: pytorch/executorch 2025-03-21T20:25:33.0701448Z run-id: 14000170654 2025-03-21T20:25:33.0701698Z env: 2025-03-21T20:25:33.0702073Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:33.0702427Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:33.0702708Z PR_NUMBER: 2025-03-21T20:25:33.0705681Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:33.0708733Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:33.0709321Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:33.0709848Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:33.0710238Z ##[endgroup] 2025-03-21T20:25:33.3120131Z Downloading single artifact 2025-03-21T20:25:33.4013186Z Preparing to download the following artifacts: 2025-03-21T20:25:33.4013905Z - docs (ID: 2798774550, Size: 34825877, Expected Digest: sha256:395d151e8964e1eff2d959b2f53572768fdd292376f767512792a724f6728595) 2025-03-21T20:25:33.4480232Z Redirecting to blob download url: https://productionresultssa7.blob.core.windows.net/actions-results/a58588a0-b710-487e-91dd-6229bbf7b20c/workflow-job-run-826822a8-93df-5c84-e910-686bbfbc79e4/artifacts/46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995.zip 2025-03-21T20:25:33.4481699Z Starting download of artifact to: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:33.5278129Z (node:407038) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. 2025-03-21T20:25:33.5279179Z (Use `node --trace-deprecation ...` to show where the warning was created) 2025-03-21T20:25:34.0586233Z SHA256 digest of downloaded artifact is 395d151e8964e1eff2d959b2f53572768fdd292376f767512792a724f6728595 2025-03-21T20:25:34.0586922Z Artifact download completed successfully. 2025-03-21T20:25:34.0587284Z Total of 1 artifact(s) downloaded 2025-03-21T20:25:34.0592994Z Download artifact has finished successfully 2025-03-21T20:25:34.0748414Z ##[group]Run set -ex 2025-03-21T20:25:34.0748747Z set -ex 2025-03-21T20:25:34.0748996Z { 2025-03-21T20:25:34.0749250Z  echo "#!/usr/bin/env bash"; 2025-03-21T20:25:34.0749599Z  echo "set -eou pipefail"; 2025-03-21T20:25:34.0749938Z  # shellcheck disable=SC2016 2025-03-21T20:25:34.0750298Z  echo 'eval "$(conda shell.bash hook)"'; 2025-03-21T20:25:34.0750804Z  echo "set -x"; 2025-03-21T20:25:34.0751095Z  echo "${SCRIPT}"; 2025-03-21T20:25:34.0751408Z } > "${RUNNER_TEMP}/exec_script" 2025-03-21T20:25:34.0751767Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-03-21T20:25:34.0752477Z python3 "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py" "" 2025-03-21T20:25:34.0758574Z shell: /usr/bin/bash -e {0} 2025-03-21T20:25:34.0758870Z env: 2025-03-21T20:25:34.0759197Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:34.0759568Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:34.0759878Z PR_NUMBER: 2025-03-21T20:25:34.0763082Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:34.0766149Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:34.0766739Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:34.0767298Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:34.0767978Z ALL_SECRETS: { "github_token": "***" } 2025-03-21T20:25:34.0768292Z ##[endgroup] 2025-03-21T20:25:34.0796182Z + echo '#!/usr/bin/env bash' 2025-03-21T20:25:34.0796617Z + echo 'set -eou pipefail' 2025-03-21T20:25:34.0796931Z + echo 'eval "$(conda shell.bash hook)"' 2025-03-21T20:25:34.0797269Z + echo 'set -x' 2025-03-21T20:25:34.0797529Z + echo 'set -euo pipefail 2025-03-21T20:25:34.0797704Z 2025-03-21T20:25:34.0797900Z # Get github.ref for the output doc folder. By default "main" 2025-03-21T20:25:34.0798331Z # If matches a tag like refs/tags/v1.12.0-rc3 or 2025-03-21T20:25:34.0798687Z # refs/tags/v1.12.0 convert to 1.12 2025-03-21T20:25:34.0799022Z export GITHUB_REF=refs/heads/main 2025-03-21T20:25:34.0799226Z 2025-03-21T20:25:34.0799360Z # Convert refs/tags/v1.12.0rc3 into 1.12. 2025-03-21T20:25:34.0799950Z # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 2025-03-21T20:25:34.0800550Z if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then 2025-03-21T20:25:34.0800927Z TARGET_FOLDER="${BASH_REMATCH[1]}" 2025-03-21T20:25:34.0801250Z else 2025-03-21T20:25:34.0801474Z TARGET_FOLDER="main" 2025-03-21T20:25:34.0801735Z fi 2025-03-21T20:25:34.0801975Z echo "Target Folder: ${TARGET_FOLDER}" 2025-03-21T20:25:34.0802202Z 2025-03-21T20:25:34.0802314Z mkdir -p "${TARGET_FOLDER}" 2025-03-21T20:25:34.0802687Z # Clean up target folder if exists and copy html output to the 2025-03-21T20:25:34.0803078Z # Target folder 2025-03-21T20:25:34.0803338Z rm -rf "${TARGET_FOLDER}"/* 2025-03-21T20:25:34.0803672Z mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" 2025-03-21T20:25:34.0804223Z git add "${TARGET_FOLDER}" || true 2025-03-21T20:25:34.0804429Z 2025-03-21T20:25:34.0804564Z git config user.name '\''pytorchbot'\'' 2025-03-21T20:25:34.0804954Z git config user.email '\''soumith+bot@pytorch.org'\'' 2025-03-21T20:25:34.0805386Z git commit -m "Auto-generating sphinx docs" || true 2025-03-21T20:25:34.0805742Z git push -f 2025-03-21T20:25:34.0805971Z ' 2025-03-21T20:25:34.0806275Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-03-21T20:25:34.0808067Z + python3 /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.github/scripts/run_with_env_secrets.py '' 2025-03-21T20:25:45.5485093Z Running command: 2025-03-21T20:25:45.5490938Z docker run -e PR_NUMBER -e RUNNER_ARTIFACT_DIR=/artifacts -e RUNNER_DOCS_DIR=/docs -e RUNNER_TEST_RESULTS_DIR=/test-results --env-file="/home/ec2-user/actions-runner/_work/_temp/github_env_14000170654" `# It is unknown why the container sees a different value for this.` -e GITHUB_STEP_SUMMARY -e SECRET_GITHUB_TOKEN --cap-add=SYS_PTRACE --detach --ipc=host --security-opt seccomp=unconfined --shm-size=2g --tty --ulimit stack=10485760:83886080 --ulimit core=0 -v "/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch:/pytorch/executorch" -v "/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra:/test-infra" -v "/home/ec2-user/actions-runner/_work/_temp/artifacts:/artifacts" -v "/home/ec2-user/actions-runner/_work/_temp/docs:/docs" -v "/home/ec2-user/actions-runner/_work/_temp/test-results:/test-results" -v "/home/ec2-user/actions-runner/_work/_temp/exec_script:/exec" -v "/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_3cff2bdb-fdc0-4030-aa1f-c11e09498c39":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_3cff2bdb-fdc0-4030-aa1f-c11e09498c39" -w /pytorch/executorch "pytorch/almalinux-builder:cpu" 2025-03-21T20:25:45.5495800Z 2025-03-21T20:25:45.5496174Z 5cc038c0d4de567db690cfe43911fee08cdad41b3b730597fe488dc433cdf5b0 2025-03-21T20:25:45.5496851Z Running command: docker exec -t 5cc038c0d4de567db690cfe43911fee08cdad41b3b730597fe488dc433cdf5b0 /exec 2025-03-21T20:25:45.5497405Z + set -euo pipefail 2025-03-21T20:25:45.5497689Z + export GITHUB_REF=refs/heads/main 2025-03-21T20:25:45.5498020Z + GITHUB_REF=refs/heads/main 2025-03-21T20:25:45.5498364Z + [[ refs/heads/main =~ ^refs/tags/v([0-9]+\.[0-9]+) ]] 2025-03-21T20:25:45.5498804Z + TARGET_FOLDER=main 2025-03-21T20:25:45.5499084Z + echo 'Target Folder: main' 2025-03-21T20:25:45.5499379Z Target Folder: main 2025-03-21T20:25:45.5499642Z + mkdir -p main 2025-03-21T20:25:45.5511104Z + rm -rf main/api-life-cycle.html main/backend-delegates-dependencies.html main/backend-delegates-integration.html main/backend-delegates-xnnpack-reference.html main/backends-arm-ethos-u.html main/backends-cadence.html main/backends-coreml.html main/backends-mediatek.html main/backends-mps.html main/backends-overview.html main/backends-qualcomm.html main/backends-vulkan.html main/backends-xnnpack.html main/backend-template.html main/bundled-io.html main/compiler-backend-dialect.html main/compiler-custom-compiler-passes.html main/compiler-delegate-and-partitioner.html main/compiler-memory-planning.html main/concepts.html main/contributing.html main/debug-backend-delegate.html main/delegate-debugging.html main/demo-apps-android.html main/demo-apps-ios.html main/devtools-overview.html main/devtools-tutorial.html main/_downloads main/etdump.html main/etrecord.html main/examples-end-to-end-to-lower-model-to-delegate.html main/executorch-runtime-api-reference.html main/export-overview.html main/export-to-executorch-api-reference.html main/extension-module.html main/extension-tensor.html main/genindex.html main/getting-started-architecture.html main/getting-started.html main/getting-started-setup.html main/_images main/index.html main/intro-how-it-works.html main/intro-overview.html main/ir-exir.html main/ir-ops-set-definition.html main/javadoc main/kernel-library-custom-aten-kernel.html main/kernel-library-overview.html main/kernel-library-selective-build.html main/llm main/markdown-sphinx-tips-tricks.html main/memory-planning-inspection.html main/model-debugging.html main/model-inspector.html main/_modules main/native-delegates-executorch-vulkan-delegate.html main/objects.inv main/portable-cpp-programming.html main/pte-file-format.html main/py-modindex.html main/quantization-overview.html main/running-a-model-cpp-tutorial.html main/runtime-backend-delegate-implementation-and-linking.html main/runtime-overview.html main/runtime-platform-abstraction-layer.html main/runtime-profiling.html main/runtime-python-api-reference.html main/sdk-bundled-io.html main/sdk-debugging.html main/sdk-delegate-integration.html main/sdk-etdump.html main/sdk-etrecord.html main/sdk-inspector.html main/sdk-overview.html main/sdk-profiling.html main/sdk-tutorial.html main/search.html main/searchindex.js main/_sources main/_sphinx_design_static main/_static main/tutorials main/tutorial-xnnpack-delegate-lowering.html main/using-executorch-android.html main/using-executorch-building-from-source.html main/using-executorch-cpp.html main/using-executorch-export.html main/using-executorch-faqs.html main/using-executorch-ios.html main/using-executorch-runtime-integration.html main/using-executorch-troubleshooting.html 2025-03-21T20:25:46.9042509Z + mv /artifacts/html/api-life-cycle.html /artifacts/html/backend-delegates-dependencies.html /artifacts/html/backend-delegates-integration.html /artifacts/html/backend-delegates-xnnpack-reference.html /artifacts/html/backends-arm-ethos-u.html /artifacts/html/backends-cadence.html /artifacts/html/backends-coreml.html /artifacts/html/backends-mediatek.html /artifacts/html/backends-mps.html /artifacts/html/backends-overview.html /artifacts/html/backends-qualcomm.html /artifacts/html/backends-vulkan.html /artifacts/html/backends-xnnpack.html /artifacts/html/backend-template.html /artifacts/html/bundled-io.html /artifacts/html/compiler-backend-dialect.html /artifacts/html/compiler-custom-compiler-passes.html /artifacts/html/compiler-delegate-and-partitioner.html /artifacts/html/compiler-memory-planning.html /artifacts/html/concepts.html /artifacts/html/contributing.html /artifacts/html/debug-backend-delegate.html /artifacts/html/delegate-debugging.html /artifacts/html/demo-apps-android.html /artifacts/html/demo-apps-ios.html /artifacts/html/devtools-overview.html /artifacts/html/devtools-tutorial.html /artifacts/html/_downloads /artifacts/html/etdump.html /artifacts/html/etrecord.html /artifacts/html/examples-end-to-end-to-lower-model-to-delegate.html /artifacts/html/executorch-runtime-api-reference.html /artifacts/html/export-overview.html /artifacts/html/export-to-executorch-api-reference.html /artifacts/html/extension-module.html /artifacts/html/extension-tensor.html /artifacts/html/genindex.html /artifacts/html/getting-started-architecture.html /artifacts/html/getting-started.html /artifacts/html/getting-started-setup.html /artifacts/html/_images /artifacts/html/index.html /artifacts/html/intro-how-it-works.html /artifacts/html/intro-overview.html /artifacts/html/ir-exir.html /artifacts/html/ir-ops-set-definition.html /artifacts/html/javadoc /artifacts/html/kernel-library-custom-aten-kernel.html /artifacts/html/kernel-library-overview.html /artifacts/html/kernel-library-selective-build.html /artifacts/html/llm /artifacts/html/markdown-sphinx-tips-tricks.html /artifacts/html/memory-planning-inspection.html /artifacts/html/model-debugging.html /artifacts/html/model-inspector.html /artifacts/html/_modules /artifacts/html/native-delegates-executorch-vulkan-delegate.html /artifacts/html/objects.inv /artifacts/html/portable-cpp-programming.html /artifacts/html/pte-file-format.html /artifacts/html/py-modindex.html /artifacts/html/quantization-overview.html /artifacts/html/running-a-model-cpp-tutorial.html /artifacts/html/runtime-backend-delegate-implementation-and-linking.html /artifacts/html/runtime-overview.html /artifacts/html/runtime-platform-abstraction-layer.html /artifacts/html/runtime-profiling.html /artifacts/html/runtime-python-api-reference.html /artifacts/html/sdk-bundled-io.html /artifacts/html/sdk-debugging.html /artifacts/html/sdk-delegate-integration.html /artifacts/html/sdk-etdump.html /artifacts/html/sdk-etrecord.html /artifacts/html/sdk-inspector.html /artifacts/html/sdk-overview.html /artifacts/html/sdk-profiling.html /artifacts/html/sdk-tutorial.html /artifacts/html/search.html /artifacts/html/searchindex.js /artifacts/html/_sources /artifacts/html/_sphinx_design_static /artifacts/html/_static /artifacts/html/tutorials /artifacts/html/tutorial-xnnpack-delegate-lowering.html /artifacts/html/using-executorch-android.html /artifacts/html/using-executorch-building-from-source.html /artifacts/html/using-executorch-cpp.html /artifacts/html/using-executorch-export.html /artifacts/html/using-executorch-faqs.html /artifacts/html/using-executorch-ios.html /artifacts/html/using-executorch-runtime-integration.html /artifacts/html/using-executorch-troubleshooting.html main 2025-03-21T20:25:46.9059590Z + git add main 2025-03-21T20:25:46.9059864Z + git config user.name pytorchbot 2025-03-21T20:25:46.9060222Z + git config user.email soumith+bot@pytorch.org 2025-03-21T20:25:46.9060886Z + git commit -m 'Auto-generating sphinx docs' 2025-03-21T20:25:46.9061292Z [gh-pages 29ba2d2] Auto-generating sphinx docs 2025-03-21T20:25:46.9061719Z 33 files changed, 39 insertions(+), 974 deletions(-) 2025-03-21T20:25:46.9062140Z delete mode 100644 main/javadoc/deprecated-list.html 2025-03-21T20:25:46.9062643Z delete mode 100644 main/javadoc/org/pytorch/executorch/LlamaCallback.html 2025-03-21T20:25:46.9063221Z delete mode 100644 main/javadoc/org/pytorch/executorch/LlamaModule.html 2025-03-21T20:25:46.9063658Z + git push -f 2025-03-21T20:25:46.9063930Z Enumerating objects: 92, done. 2025-03-21T20:25:46.9064232Z Counting objects: 1% (1/92) 2025-03-21T20:25:46.9064531Z Counting objects: 2% (2/92) 2025-03-21T20:25:46.9064828Z Counting objects: 3% (3/92) 2025-03-21T20:25:46.9065110Z Counting objects: 4% (4/92) 2025-03-21T20:25:46.9065405Z Counting objects: 5% (5/92) 2025-03-21T20:25:46.9065697Z Counting objects: 6% (6/92) 2025-03-21T20:25:46.9065991Z Counting objects: 7% (7/92) 2025-03-21T20:25:46.9066291Z Counting objects: 8% (8/92) 2025-03-21T20:25:46.9066584Z Counting objects: 9% (9/92) 2025-03-21T20:25:46.9066882Z Counting objects: 10% (10/92) 2025-03-21T20:25:46.9067186Z Counting objects: 11% (11/92) 2025-03-21T20:25:46.9079551Z Counting objects: 13% (12/92) 2025-03-21T20:25:46.9080211Z Counting objects: 14% (13/92) 2025-03-21T20:25:46.9080795Z Counting objects: 15% (14/92) 2025-03-21T20:25:46.9081305Z Counting objects: 16% (15/92) 2025-03-21T20:25:46.9081836Z Counting objects: 17% (16/92) 2025-03-21T20:25:46.9082358Z Counting objects: 18% (17/92) 2025-03-21T20:25:46.9082910Z Counting objects: 19% (18/92) 2025-03-21T20:25:46.9083426Z Counting objects: 20% (19/92) 2025-03-21T20:25:46.9083939Z Counting objects: 21% (20/92) 2025-03-21T20:25:46.9084410Z Counting objects: 22% (21/92) 2025-03-21T20:25:46.9084935Z Counting objects: 23% (22/92) 2025-03-21T20:25:46.9085430Z Counting objects: 25% (23/92) 2025-03-21T20:25:46.9085951Z Counting objects: 26% (24/92) 2025-03-21T20:25:46.9086484Z Counting objects: 27% (25/92) 2025-03-21T20:25:46.9087001Z Counting objects: 28% (26/92) 2025-03-21T20:25:46.9087513Z Counting objects: 29% (27/92) 2025-03-21T20:25:46.9088011Z Counting objects: 30% (28/92) 2025-03-21T20:25:46.9088533Z Counting objects: 31% (29/92) 2025-03-21T20:25:46.9089036Z Counting objects: 32% (30/92) 2025-03-21T20:25:46.9089541Z Counting objects: 33% (31/92) 2025-03-21T20:25:46.9090047Z Counting objects: 34% (32/92) 2025-03-21T20:25:46.9090550Z Counting objects: 35% (33/92) 2025-03-21T20:25:46.9091041Z Counting objects: 36% (34/92) 2025-03-21T20:25:46.9091841Z Counting objects: 38% (35/92) 2025-03-21T20:25:46.9092355Z Counting objects: 39% (36/92) 2025-03-21T20:25:46.9092839Z Counting objects: 40% (37/92) 2025-03-21T20:25:46.9093337Z Counting objects: 41% (38/92) 2025-03-21T20:25:46.9093831Z Counting objects: 42% (39/92) 2025-03-21T20:25:46.9094326Z Counting objects: 43% (40/92) 2025-03-21T20:25:46.9094815Z Counting objects: 44% (41/92) 2025-03-21T20:25:46.9095448Z Counting objects: 45% (42/92) 2025-03-21T20:25:46.9095938Z Counting objects: 46% (43/92) 2025-03-21T20:25:46.9096441Z Counting objects: 47% (44/92) 2025-03-21T20:25:46.9096964Z Counting objects: 48% (45/92) 2025-03-21T20:25:46.9097472Z Counting objects: 50% (46/92) 2025-03-21T20:25:46.9097967Z Counting objects: 51% (47/92) 2025-03-21T20:25:46.9098464Z Counting objects: 52% (48/92) 2025-03-21T20:25:46.9099056Z Counting objects: 53% (49/92) 2025-03-21T20:25:46.9099552Z Counting objects: 54% (50/92) 2025-03-21T20:25:46.9100052Z Counting objects: 55% (51/92) 2025-03-21T20:25:46.9100566Z Counting objects: 56% (52/92) 2025-03-21T20:25:46.9101095Z Counting objects: 57% (53/92) 2025-03-21T20:25:46.9101630Z Counting objects: 58% (54/92) 2025-03-21T20:25:46.9102132Z Counting objects: 59% (55/92) 2025-03-21T20:25:46.9102575Z Counting objects: 60% (56/92) 2025-03-21T20:25:46.9103091Z Counting objects: 61% (57/92) 2025-03-21T20:25:46.9103606Z Counting objects: 63% (58/92) 2025-03-21T20:25:46.9104129Z Counting objects: 64% (59/92) 2025-03-21T20:25:46.9104624Z Counting objects: 65% (60/92) 2025-03-21T20:25:46.9105099Z Counting objects: 66% (61/92) 2025-03-21T20:25:46.9105621Z Counting objects: 67% (62/92) 2025-03-21T20:25:46.9106138Z Counting objects: 68% (63/92) 2025-03-21T20:25:46.9106642Z Counting objects: 69% (64/92) 2025-03-21T20:25:46.9107162Z Counting objects: 70% (65/92) 2025-03-21T20:25:46.9107677Z Counting objects: 71% (66/92) 2025-03-21T20:25:46.9108199Z Counting objects: 72% (67/92) 2025-03-21T20:25:46.9108698Z Counting objects: 73% (68/92) 2025-03-21T20:25:46.9109218Z Counting objects: 75% (69/92) 2025-03-21T20:25:46.9109752Z Counting objects: 76% (70/92) 2025-03-21T20:25:46.9110273Z Counting objects: 77% (71/92) 2025-03-21T20:25:46.9110793Z Counting objects: 78% (72/92) 2025-03-21T20:25:46.9111307Z Counting objects: 79% (73/92) 2025-03-21T20:25:46.9111832Z Counting objects: 80% (74/92) 2025-03-21T20:25:46.9112340Z Counting objects: 81% (75/92) 2025-03-21T20:25:46.9112869Z Counting objects: 82% (76/92) 2025-03-21T20:25:46.9113373Z Counting objects: 83% (77/92) 2025-03-21T20:25:46.9113881Z Counting objects: 84% (78/92) 2025-03-21T20:25:46.9114403Z Counting objects: 85% (79/92) 2025-03-21T20:25:46.9114856Z Counting objects: 86% (80/92) 2025-03-21T20:25:46.9115295Z Counting objects: 88% (81/92) 2025-03-21T20:25:46.9115810Z Counting objects: 89% (82/92) 2025-03-21T20:25:46.9116290Z Counting objects: 90% (83/92) 2025-03-21T20:25:46.9116717Z Counting objects: 91% (84/92) 2025-03-21T20:25:46.9117145Z Counting objects: 92% (85/92) 2025-03-21T20:25:46.9117589Z Counting objects: 93% (86/92) 2025-03-21T20:25:46.9118018Z Counting objects: 94% (87/92) 2025-03-21T20:25:46.9118449Z Counting objects: 95% (88/92) 2025-03-21T20:25:46.9118895Z Counting objects: 96% (89/92) 2025-03-21T20:25:46.9119333Z Counting objects: 97% (90/92) 2025-03-21T20:25:46.9119783Z Counting objects: 98% (91/92) 2025-03-21T20:25:46.9120222Z Counting objects: 100% (92/92) 2025-03-21T20:25:46.9120735Z Counting objects: 100% (92/92), done. 2025-03-21T20:25:46.9121347Z Delta compression using up to 8 threads 2025-03-21T20:25:46.9121952Z Compressing objects: 2% (1/41) 2025-03-21T20:25:46.9122493Z Compressing objects: 4% (2/41) 2025-03-21T20:25:46.9122935Z Compressing objects: 7% (3/41) 2025-03-21T20:25:46.9123335Z Compressing objects: 9% (4/41) 2025-03-21T20:25:46.9123631Z Compressing objects: 12% (5/41) 2025-03-21T20:25:46.9123939Z Compressing objects: 14% (6/41) 2025-03-21T20:25:46.9124249Z Compressing objects: 17% (7/41) 2025-03-21T20:25:46.9124742Z Compressing objects: 19% (8/41) 2025-03-21T20:25:46.9125060Z Compressing objects: 21% (9/41) 2025-03-21T20:25:46.9125382Z Compressing objects: 24% (10/41) 2025-03-21T20:25:46.9125701Z Compressing objects: 26% (11/41) 2025-03-21T20:25:46.9126021Z Compressing objects: 29% (12/41) 2025-03-21T20:25:46.9126335Z Compressing objects: 31% (13/41) 2025-03-21T20:25:46.9126652Z Compressing objects: 34% (14/41) 2025-03-21T20:25:46.9126967Z Compressing objects: 36% (15/41) 2025-03-21T20:25:46.9127359Z Compressing objects: 39% (16/41) 2025-03-21T20:25:46.9127677Z Compressing objects: 41% (17/41) 2025-03-21T20:25:46.9127989Z Compressing objects: 43% (18/41) 2025-03-21T20:25:46.9128297Z Compressing objects: 46% (19/41) 2025-03-21T20:25:46.9128620Z Compressing objects: 48% (20/41) 2025-03-21T20:25:46.9128918Z Compressing objects: 51% (21/41) 2025-03-21T20:25:46.9129234Z Compressing objects: 53% (22/41) 2025-03-21T20:25:46.9129547Z Compressing objects: 56% (23/41) 2025-03-21T20:25:46.9129861Z Compressing objects: 58% (24/41) 2025-03-21T20:25:46.9130178Z Compressing objects: 60% (25/41) 2025-03-21T20:25:46.9130493Z Compressing objects: 63% (26/41) 2025-03-21T20:25:46.9130806Z Compressing objects: 65% (27/41) 2025-03-21T20:25:46.9131127Z Compressing objects: 68% (28/41) 2025-03-21T20:25:46.9131438Z Compressing objects: 70% (29/41) 2025-03-21T20:25:46.9131751Z Compressing objects: 73% (30/41) 2025-03-21T20:25:47.4683315Z Compressing objects: 75% (31/41) 2025-03-21T20:25:47.4684088Z Compressing objects: 78% (32/41) 2025-03-21T20:25:47.4684431Z Compressing objects: 80% (33/41) 2025-03-21T20:25:47.4684761Z Compressing objects: 82% (34/41) 2025-03-21T20:25:47.4685086Z Compressing objects: 85% (35/41) 2025-03-21T20:25:47.4685437Z Compressing objects: 87% (36/41) 2025-03-21T20:25:47.4685762Z Compressing objects: 90% (37/41) 2025-03-21T20:25:47.4686084Z Compressing objects: 92% (38/41) 2025-03-21T20:25:47.4686406Z Compressing objects: 95% (39/41) 2025-03-21T20:25:47.4686727Z Compressing objects: 97% (40/41) 2025-03-21T20:25:47.4687059Z Compressing objects: 100% (41/41) 2025-03-21T20:25:47.4687392Z Compressing objects: 100% (41/41), done. 2025-03-21T20:25:47.4687732Z Writing objects: 2% (1/44) 2025-03-21T20:25:47.4688023Z Writing objects: 4% (2/44) 2025-03-21T20:25:47.4688326Z Writing objects: 6% (3/44) 2025-03-21T20:25:47.4688622Z Writing objects: 9% (4/44) 2025-03-21T20:25:47.4688922Z Writing objects: 11% (5/44) 2025-03-21T20:25:47.4689216Z Writing objects: 13% (6/44) 2025-03-21T20:25:47.4689529Z Writing objects: 15% (7/44) 2025-03-21T20:25:47.4689824Z Writing objects: 18% (8/44) 2025-03-21T20:25:47.4690121Z Writing objects: 20% (9/44) 2025-03-21T20:25:47.4690425Z Writing objects: 22% (10/44) 2025-03-21T20:25:47.4690723Z Writing objects: 25% (11/44) 2025-03-21T20:25:47.4691035Z Writing objects: 27% (12/44) 2025-03-21T20:25:47.4691335Z Writing objects: 29% (13/44) 2025-03-21T20:25:47.4691635Z Writing objects: 31% (14/44) 2025-03-21T20:25:47.4691941Z Writing objects: 34% (15/44) 2025-03-21T20:25:47.4692249Z Writing objects: 36% (16/44) 2025-03-21T20:25:47.4692550Z Writing objects: 38% (17/44) 2025-03-21T20:25:47.4692853Z Writing objects: 40% (18/44) 2025-03-21T20:25:47.4693149Z Writing objects: 43% (19/44) 2025-03-21T20:25:47.4693444Z Writing objects: 45% (20/44) 2025-03-21T20:25:47.4693744Z Writing objects: 47% (21/44) 2025-03-21T20:25:47.4694042Z Writing objects: 50% (22/44) 2025-03-21T20:25:47.4694342Z Writing objects: 52% (23/44) 2025-03-21T20:25:47.4694652Z Writing objects: 54% (24/44) 2025-03-21T20:25:47.4694940Z Writing objects: 56% (25/44) 2025-03-21T20:25:47.4695246Z Writing objects: 59% (26/44) 2025-03-21T20:25:47.4695558Z Writing objects: 61% (27/44) 2025-03-21T20:25:47.4695854Z Writing objects: 63% (28/44) 2025-03-21T20:25:47.4696153Z Writing objects: 65% (29/44) 2025-03-21T20:25:47.4696454Z Writing objects: 68% (30/44) 2025-03-21T20:25:47.4696755Z Writing objects: 70% (31/44) 2025-03-21T20:25:47.4697055Z Writing objects: 75% (33/44) 2025-03-21T20:25:47.4697358Z Writing objects: 79% (35/44) 2025-03-21T20:25:47.4697947Z Writing objects: 81% (36/44) 2025-03-21T20:25:47.4698265Z Writing objects: 84% (37/44) 2025-03-21T20:25:47.4698660Z Writing objects: 86% (38/44) 2025-03-21T20:25:47.4698971Z Writing objects: 88% (39/44) 2025-03-21T20:25:47.4699272Z Writing objects: 90% (40/44) 2025-03-21T20:25:47.4699572Z Writing objects: 93% (41/44) 2025-03-21T20:25:47.4699862Z Writing objects: 95% (42/44) 2025-03-21T20:25:47.4700267Z Writing objects: 97% (43/44) 2025-03-21T20:25:47.4700569Z Writing objects: 100% (44/44) 2025-03-21T20:25:47.4700938Z Writing objects: 100% (44/44), 15.84 KiB | 5.28 MiB/s, done. 2025-03-21T20:25:47.4701391Z Total 44 (delta 35), reused 0 (delta 0), pack-reused 0 2025-03-21T20:25:47.4702020Z remote: Resolving deltas: 0% (0/35) 2025-03-21T20:25:47.4702429Z remote: Resolving deltas: 2% (1/35) 2025-03-21T20:25:47.4702832Z remote: Resolving deltas: 5% (2/35) 2025-03-21T20:25:47.4703233Z remote: Resolving deltas: 8% (3/35) 2025-03-21T20:25:47.4703641Z remote: Resolving deltas: 11% (4/35) 2025-03-21T20:25:47.4704038Z remote: Resolving deltas: 14% (5/35) 2025-03-21T20:25:47.4704434Z remote: Resolving deltas: 17% (6/35) 2025-03-21T20:25:47.4704830Z remote: Resolving deltas: 20% (7/35) 2025-03-21T20:25:47.4705217Z remote: Resolving deltas: 22% (8/35) 2025-03-21T20:25:47.4705613Z remote: Resolving deltas: 25% (9/35) 2025-03-21T20:25:47.4706019Z remote: Resolving deltas: 28% (10/35) 2025-03-21T20:25:47.4706433Z remote: Resolving deltas: 31% (11/35) 2025-03-21T20:25:47.4706843Z remote: Resolving deltas: 34% (12/35) 2025-03-21T20:25:47.4707247Z remote: Resolving deltas: 37% (13/35) 2025-03-21T20:25:47.4707659Z remote: Resolving deltas: 40% (14/35) 2025-03-21T20:25:47.4708059Z remote: Resolving deltas: 42% (15/35) 2025-03-21T20:25:47.4708461Z remote: Resolving deltas: 45% (16/35) 2025-03-21T20:25:47.4708856Z remote: Resolving deltas: 48% (17/35) 2025-03-21T20:25:47.4709255Z remote: Resolving deltas: 51% (18/35) 2025-03-21T20:25:47.4709659Z remote: Resolving deltas: 54% (19/35) 2025-03-21T20:25:47.4710056Z remote: Resolving deltas: 57% (20/35) 2025-03-21T20:25:47.4710452Z remote: Resolving deltas: 60% (21/35) 2025-03-21T20:25:47.4710851Z remote: Resolving deltas: 62% (22/35) 2025-03-21T20:25:47.4711250Z remote: Resolving deltas: 65% (23/35) 2025-03-21T20:25:47.4711650Z remote: Resolving deltas: 68% (24/35) 2025-03-21T20:25:47.4712054Z remote: Resolving deltas: 71% (25/35) 2025-03-21T20:25:47.4712441Z remote: Resolving deltas: 74% (26/35) 2025-03-21T20:25:47.4712837Z remote: Resolving deltas: 77% (27/35) 2025-03-21T20:25:47.4713234Z remote: Resolving deltas: 80% (28/35) 2025-03-21T20:25:47.4713636Z remote: Resolving deltas: 82% (29/35) 2025-03-21T20:25:47.4714037Z remote: Resolving deltas: 85% (30/35) 2025-03-21T20:25:47.4714438Z remote: Resolving deltas: 88% (31/35) 2025-03-21T20:25:47.4714837Z remote: Resolving deltas: 91% (32/35) 2025-03-21T20:25:47.4715241Z remote: Resolving deltas: 94% (33/35) 2025-03-21T20:25:47.4715640Z remote: Resolving deltas: 97% (34/35) 2025-03-21T20:25:47.4716044Z remote: Resolving deltas: 100% (35/35) 2025-03-21T20:25:47.4716586Z remote: Resolving deltas: 100% (35/35), completed with 31 local objects. 2025-03-21T20:25:47.4717086Z To https://github.com/pytorch/executorch 2025-03-21T20:25:47.4717454Z 13f8c51..29ba2d2 gh-pages -> gh-pages 2025-03-21T20:25:47.4778394Z ##[group]Run pmeier/pytest-results-action@v0.3.0 2025-03-21T20:25:47.4778913Z with: 2025-03-21T20:25:47.4779237Z path: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:47.4779648Z fail-on-empty: false 2025-03-21T20:25:47.4779921Z env: 2025-03-21T20:25:47.4780193Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:47.4780555Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:47.4780856Z PR_NUMBER: 2025-03-21T20:25:47.4783817Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:47.4787025Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:47.4787613Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:47.4788165Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:47.4788561Z ##[endgroup] 2025-03-21T20:25:47.5371308Z Prepare all required actions 2025-03-21T20:25:47.5407345Z ##[group]Run ./test-infra/.github/actions/chown-directory 2025-03-21T20:25:47.5407732Z with: 2025-03-21T20:25:47.5408098Z directory: /home/ec2-user/actions-runner/_work/executorch/executorch/ 2025-03-21T20:25:47.5408679Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-03-21T20:25:47.5409110Z env: 2025-03-21T20:25:47.5409379Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:47.5409746Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:47.5410052Z PR_NUMBER: 2025-03-21T20:25:47.5412988Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:47.5416056Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:47.5416645Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:47.5417201Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:47.5417601Z ##[endgroup] 2025-03-21T20:25:47.5440590Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-03-21T20:25:47.5441302Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-03-21T20:25:47.5449837Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:25:47.5450234Z env: 2025-03-21T20:25:47.5450502Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:47.5450893Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:47.5451208Z PR_NUMBER: 2025-03-21T20:25:47.5454136Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:47.5457335Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:47.5457931Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:47.5458596Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:47.5459133Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-03-21T20:25:47.5459700Z DIRECTORY: /home/ec2-user/actions-runner/_work/executorch/executorch/ 2025-03-21T20:25:47.5460146Z ##[endgroup] 2025-03-21T20:25:47.5638676Z Unable to find image '308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest' locally 2025-03-21T20:25:47.7984784Z latest: Pulling from tool/alpine 2025-03-21T20:25:47.7988113Z 540db60ca938: Pulling fs layer 2025-03-21T20:25:47.8904929Z 540db60ca938: Download complete 2025-03-21T20:25:47.9701668Z 540db60ca938: Pull complete 2025-03-21T20:25:47.9813683Z Digest: sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-03-21T20:25:47.9853842Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-03-21T20:25:49.0260524Z Prepare all required actions 2025-03-21T20:25:49.0286100Z ##[group]Run ./test-infra/.github/actions/chown-directory 2025-03-21T20:25:49.0286487Z with: 2025-03-21T20:25:49.0286787Z directory: /home/ec2-user/actions-runner/_work/_temp 2025-03-21T20:25:49.0287293Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-03-21T20:25:49.0287752Z env: 2025-03-21T20:25:49.0288015Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:49.0288377Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:49.0288676Z PR_NUMBER: 2025-03-21T20:25:49.0291616Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:49.0294684Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:49.0295269Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:49.0295819Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:49.0296220Z ##[endgroup] 2025-03-21T20:25:49.0320397Z ##[group]Run docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-03-21T20:25:49.0321115Z docker run --rm -v "${DIRECTORY}":/v -w /v "${ALPINE_IMAGE}" chown -R "$(id -u):$(id -g)" . 2025-03-21T20:25:49.0328429Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:25:49.0328826Z env: 2025-03-21T20:25:49.0329107Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:49.0329473Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:49.0329774Z PR_NUMBER: 2025-03-21T20:25:49.0332679Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:49.0335904Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:49.0336504Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:49.0337051Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:49.0337571Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-03-21T20:25:49.0338064Z DIRECTORY: /home/ec2-user/actions-runner/_work/_temp 2025-03-21T20:25:49.0338416Z ##[endgroup] 2025-03-21T20:25:50.0801579Z ##[group]Run # Only do these steps if we actually want to upload an artifact 2025-03-21T20:25:50.0802682Z # Only do these steps if we actually want to upload an artifact 2025-03-21T20:25:50.0803500Z if [[ -n "${UPLOAD_ARTIFACT_NAME}" ]]; then 2025-03-21T20:25:50.0804434Z  # If the default execution path is followed then we should get a wheel in the dist/ folder 2025-03-21T20:25:50.0805459Z  # attempt to just grab whatever is in there and scoop it all up 2025-03-21T20:25:50.0806311Z  if find "dist/" -name "*.whl" >/dev/null 2>/dev/null; then 2025-03-21T20:25:50.0807053Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-03-21T20:25:50.0807613Z  fi 2025-03-21T20:25:50.0808079Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-03-21T20:25:50.0824452Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-03-21T20:25:50.0825204Z  fi 2025-03-21T20:25:50.0825627Z fi 2025-03-21T20:25:50.0825978Z  2025-03-21T20:25:50.0826354Z upload_docs=0 2025-03-21T20:25:50.0827033Z # Check if there are files in the documentation folder to upload, note that 2025-03-21T20:25:50.0827794Z # empty folders do not count 2025-03-21T20:25:50.0828585Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-03-21T20:25:50.0829609Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-03-21T20:25:50.0830425Z  # upload will probably not work correctly 2025-03-21T20:25:50.0831018Z  upload_docs=1 2025-03-21T20:25:50.0831442Z fi 2025-03-21T20:25:50.0831979Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-03-21T20:25:50.0840948Z shell: /usr/bin/bash -e {0} 2025-03-21T20:25:50.0841445Z env: 2025-03-21T20:25:50.0841886Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:50.0842519Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:50.0842977Z PR_NUMBER: 2025-03-21T20:25:50.0848319Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:50.0854199Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:50.0855421Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:50.0856305Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:50.0856948Z UPLOAD_ARTIFACT_NAME: 2025-03-21T20:25:50.0857407Z ##[endgroup] 2025-03-21T20:25:50.0944937Z Prepare all required actions 2025-03-21T20:25:50.0981163Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-03-21T20:25:50.0981546Z with: 2025-03-21T20:25:50.0981772Z env: 2025-03-21T20:25:50.0982037Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:50.0982398Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:50.0982697Z PR_NUMBER: 2025-03-21T20:25:50.0985632Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:50.0988688Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:50.0989293Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:50.0989841Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:50.0990236Z ##[endgroup] 2025-03-21T20:25:50.1015604Z ##[group]Run set -eou pipefail 2025-03-21T20:25:50.1015979Z set -eou pipefail 2025-03-21T20:25:50.1016259Z  2025-03-21T20:25:50.1016641Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-03-21T20:25:50.1017111Z for _ in $(seq 1440); do 2025-03-21T20:25:50.1017475Z  # Break if no ssh session exists anymore 2025-03-21T20:25:50.1017843Z  if [ "$(who)" = "" ]; then 2025-03-21T20:25:50.1018154Z  break 2025-03-21T20:25:50.1018413Z  fi 2025-03-21T20:25:50.1018762Z  echo "." 2025-03-21T20:25:50.1019015Z  sleep 5 2025-03-21T20:25:50.1019299Z done 2025-03-21T20:25:50.1025399Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:25:50.1025791Z env: 2025-03-21T20:25:50.1026052Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:50.1026415Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:50.1026724Z PR_NUMBER: 2025-03-21T20:25:50.1029781Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:50.1032859Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:50.1033450Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:50.1034179Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:50.1034587Z ##[endgroup] 2025-03-21T20:25:50.1059742Z Holding runner for 2 hours until all ssh sessions have logged out 2025-03-21T20:25:50.1143862Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-03-21T20:25:50.1144799Z # ignore expansion of "docker ps -q" since it could be empty 2025-03-21T20:25:50.1145541Z # shellcheck disable=SC2046 2025-03-21T20:25:50.1146142Z docker stop $(docker ps -q) || true 2025-03-21T20:25:50.1146759Z # Prune all of the docker images 2025-03-21T20:25:50.1147316Z docker system prune -af 2025-03-21T20:25:50.1155652Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:25:50.1156298Z env: 2025-03-21T20:25:50.1156732Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:50.1157335Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:50.1157882Z PR_NUMBER: 2025-03-21T20:25:50.1162762Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:50.1165889Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:50.1166482Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:50.1167046Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:50.1167466Z ##[endgroup] 2025-03-21T20:25:50.6545518Z 5cc038c0d4de 2025-03-21T20:25:50.6723970Z Deleted Containers: 2025-03-21T20:25:50.6724481Z 5cc038c0d4de567db690cfe43911fee08cdad41b3b730597fe488dc433cdf5b0 2025-03-21T20:25:50.6724816Z 2025-03-21T20:25:52.6045434Z Deleted Images: 2025-03-21T20:25:52.6046110Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-03-21T20:25:52.6047078Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-03-21T20:25:52.6047994Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2025-03-21T20:25:52.6048633Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2025-03-21T20:25:52.6049173Z untagged: pytorch/almalinux-builder:cpu 2025-03-21T20:25:52.6049784Z untagged: pytorch/almalinux-builder@sha256:ccf8679c6fbd01378ea001a509838453253c5acff1a2e6126de6cd164628d096 2025-03-21T20:25:52.6050550Z deleted: sha256:8b5fcbb503db8688565c76ababd6c08be5c3dd2a6509b366f054b23b01d8fbce 2025-03-21T20:25:52.6051173Z deleted: sha256:3562ad603826584057136b4cb81cb938be93ada78a1c74954dc0ab636603bcbd 2025-03-21T20:25:52.6051799Z deleted: sha256:0efd5b0adcc8ecad4185ca799bfad0ec3b5bdd2d936123535a466fe9ece97154 2025-03-21T20:25:52.6052424Z deleted: sha256:3b2769389028bd6ed2536729785c9359c37689285d3552e8b2c07f63930a459b 2025-03-21T20:25:52.6053035Z deleted: sha256:14f4b3b1d4539c00aaff99de65f538e58aa0d847b596585637ebffe1609cb655 2025-03-21T20:25:52.6053658Z deleted: sha256:1f0cfd23131199f20cde5ec9b2f3dccbe80ab0f4ebc4567c6febdbc70f73f300 2025-03-21T20:25:52.6054281Z deleted: sha256:22c5368f8b8583e22dbff5c007d08b9824af448e75d32444b07ab9db5468a70a 2025-03-21T20:25:52.6055136Z deleted: sha256:91c06efba5760a588ebe07d0ba9dd9dfd9548134af6d995c88c5b41ea4581eef 2025-03-21T20:25:52.6055763Z deleted: sha256:c2bd167616416c75b1b56da7d0c212d9a73201482c5f7e3ae4b4039dbe80207e 2025-03-21T20:25:52.6056537Z deleted: sha256:248e7fa978ab0f09da32f19af8e1b39254dedffda7ea725e0fad388c9720bbf9 2025-03-21T20:25:52.6057164Z deleted: sha256:e0e50250ef6ad3c88140029b8929519335b7a0f5fa558cc550bb3aaf4d90ad6b 2025-03-21T20:25:52.6057781Z deleted: sha256:041f440fd22dc5fed9e87b938a2844584a43645b8b5e80737de32d9065b385a9 2025-03-21T20:25:52.6058391Z deleted: sha256:1009f92b26c687257b0c524329b47292c9004d2905089503be2d09a28022013f 2025-03-21T20:25:52.6059083Z deleted: sha256:35db599de6420f503481e6f99c04f7fd0028deca23c1c2a5a4f45d59d0aea9db 2025-03-21T20:25:52.6059713Z deleted: sha256:cd148a701ebae8b45aef4748ea046b1f451e07ddac801263cab96c2da8371f14 2025-03-21T20:25:52.6060330Z deleted: sha256:083d97406c30e9bd1c400f024dc33185d40227b39111363f9c2d2bc75fdb559d 2025-03-21T20:25:52.6061167Z deleted: sha256:3bf22c411a47bc70aa3a353ed7fa3c1f4558402b590f9a33abd255cda1e7ad19 2025-03-21T20:25:52.6061798Z deleted: sha256:75d2f730541644ed380f2f7ec9afb377c1f4863003fafce00ebf93b9c7342210 2025-03-21T20:25:52.6062176Z 2025-03-21T20:25:52.6069021Z Total reclaimed space: 3.559GB 2025-03-21T20:25:52.6130561Z ##[group]Run set +e 2025-03-21T20:25:52.6131121Z set +e 2025-03-21T20:25:52.6131561Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-03-21T20:25:52.6132235Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-03-21T20:25:52.6132875Z else 2025-03-21T20:25:52.6133362Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-03-21T20:25:52.6133988Z fi 2025-03-21T20:25:52.6134381Z set -e 2025-03-21T20:25:52.6142546Z shell: /usr/bin/bash -e {0} 2025-03-21T20:25:52.6143057Z env: 2025-03-21T20:25:52.6143526Z DOCKER_IMAGE: pytorch/almalinux-builder:cpu 2025-03-21T20:25:52.6144163Z REPOSITORY: pytorch/executorch 2025-03-21T20:25:52.6144698Z PR_NUMBER: 2025-03-21T20:25:52.6150389Z SCRIPT: set -euo pipefail # Get github.ref for the output doc folder. By default "main" # If matches a tag like refs/tags/v1.12.0-rc3 or # refs/tags/v1.12.0 convert to 1.12 export GITHUB_REF=refs/heads/main # Convert refs/tags/v1.12.0rc3 into 1.12. # Adopted from https://github.com/pytorch/pytorch/blob/main/.github/workflows/_docs.yml#L150C11-L155C13 if [[ "${GITHUB_REF}" =~ ^refs/tags/v([0-9]+\.[0-9]+) ]]; then TARGET_FOLDER="${BASH_REMATCH[1]}" else TARGET_FOLDER="main" fi echo "Target Folder: ${TARGET_FOLDER}" mkdir -p "${TARGET_FOLDER}" # Clean up target folder if exists and copy html output to the # Target folder rm -rf "${TARGET_FOLDER}"/* mv "${RUNNER_ARTIFACT_DIR}"/html/* "${TARGET_FOLDER}" git add "${TARGET_FOLDER}" || true git config user.name 'pytorchbot' git config user.email 'soumith+bot@pytorch.org' git commit -m "Auto-generating sphinx docs" || true git push -f 2025-03-21T20:25:52.6156416Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-03-21T20:25:52.6157514Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-03-21T20:25:52.6158467Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-03-21T20:25:52.6159186Z NO_SUDO: false 2025-03-21T20:25:52.6159599Z ##[endgroup] 2025-03-21T20:25:52.9992941Z Post job cleanup. 2025-03-21T20:25:53.1248150Z Post job cleanup. 2025-03-21T20:25:53.2218765Z [command]/usr/bin/git version 2025-03-21T20:25:53.2255579Z git version 2.47.1 2025-03-21T20:25:53.2291455Z Copying '/home/ec2-user/.gitconfig' to '/home/ec2-user/actions-runner/_work/_temp/d8693679-f939-43d3-947b-1b41a714b1f4/.gitconfig' 2025-03-21T20:25:53.2300185Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/d8693679-f939-43d3-947b-1b41a714b1f4' before making global git config changes 2025-03-21T20:25:53.2301108Z Adding repository directory to the temporary git global config as a safe directory 2025-03-21T20:25:53.2305417Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-03-21T20:25:53.2341315Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-03-21T20:25:53.2380385Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-03-21T20:25:53.2648057Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-03-21T20:25:53.2668656Z http.https://github.com/.extraheader 2025-03-21T20:25:53.2678216Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-03-21T20:25:53.2705820Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-03-21T20:25:53.3042393Z A job completed hook has been configured by the self-hosted runner administrator 2025-03-21T20:25:53.3070393Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-03-21T20:25:53.3075654Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-03-21T20:25:53.3076056Z ##[endgroup] 2025-03-21T20:25:53.3165773Z [!ALERT!] Swap out detected [!ALERT!] 2025-03-21T20:26:11.5581414Z Cleaning up orphan processes