2025-07-24T03:40:49.8450289Z Current runner version: '2.326.0' 2025-07-24T03:40:49.8473184Z ##[group]Runner Image Provisioner 2025-07-24T03:40:49.8474012Z Hosted Compute Agent 2025-07-24T03:40:49.8474606Z Version: 20250711.363 2025-07-24T03:40:49.8475522Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c 2025-07-24T03:40:49.8476198Z Build Date: 2025-07-11T20:04:25Z 2025-07-24T03:40:49.8476839Z ##[endgroup] 2025-07-24T03:40:49.8477370Z ##[group]Operating System 2025-07-24T03:40:49.8477928Z Ubuntu 2025-07-24T03:40:49.8478443Z 24.04.2 2025-07-24T03:40:49.8478908Z LTS 2025-07-24T03:40:49.8479353Z ##[endgroup] 2025-07-24T03:40:49.8479771Z ##[group]Runner Image 2025-07-24T03:40:49.8480403Z Image: ubuntu-24.04 2025-07-24T03:40:49.8480860Z Version: 20250720.1.0 2025-07-24T03:40:49.8481824Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md 2025-07-24T03:40:49.8483374Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 2025-07-24T03:40:49.8484352Z ##[endgroup] 2025-07-24T03:40:49.8486896Z ##[group]GITHUB_TOKEN Permissions 2025-07-24T03:40:49.8488876Z Actions: read 2025-07-24T03:40:49.8489489Z Attestations: read 2025-07-24T03:40:49.8489987Z Checks: read 2025-07-24T03:40:49.8490419Z Contents: read 2025-07-24T03:40:49.8490996Z Deployments: read 2025-07-24T03:40:49.8491453Z Discussions: read 2025-07-24T03:40:49.8491951Z Issues: read 2025-07-24T03:40:49.8492412Z Metadata: read 2025-07-24T03:40:49.8492906Z Models: read 2025-07-24T03:40:49.8493380Z Packages: read 2025-07-24T03:40:49.8493891Z Pages: read 2025-07-24T03:40:49.8494384Z PullRequests: read 2025-07-24T03:40:49.8494876Z RepositoryProjects: read 2025-07-24T03:40:49.8495648Z SecurityEvents: read 2025-07-24T03:40:49.8496226Z Statuses: read 2025-07-24T03:40:49.8496714Z ##[endgroup] 2025-07-24T03:40:49.8498790Z Secret source: Actions 2025-07-24T03:40:49.8499451Z Prepare workflow directory 2025-07-24T03:40:49.8824466Z Prepare all required actions 2025-07-24T03:40:49.8960756Z Uses: pytorch/pytorch/.github/workflows/_get-changed-files.yml@refs/pull/149961/merge (5569cd4ca334a1ae6954f4e673fae67c59e9bc65) 2025-07-24T03:40:49.8969392Z Complete job name: Get changed files / get-changed-files 2025-07-24T03:40:49.9748378Z ##[group]Run # Check if we're in a pull request context 2025-07-24T03:40:49.9749743Z # Check if we're in a pull request context 2025-07-24T03:40:49.9751450Z if [ "pull_request" = "pull_request" ] || [ "pull_request" = "pull_request_target" ]; then 2025-07-24T03:40:49.9752975Z  echo "Running in PR context" 2025-07-24T03:40:49.9753945Z  2025-07-24T03:40:49.9755220Z  # Get the PR number from the github context 2025-07-24T03:40:49.9756413Z  PR_NUMBER="149961" 2025-07-24T03:40:49.9757502Z  2025-07-24T03:40:49.9758843Z  # Use gh CLI to get changed files in the PR with explicit repo 2025-07-24T03:40:49.9761295Z  CHANGED_FILES=$(gh api repos/pytorch/pytorch/pulls/$PR_NUMBER/files --paginate --jq '.[] | select(.status != "removed") | .filename' | tr '\n' ' ' | sed 's/ $//') 2025-07-24T03:40:49.9763461Z  2025-07-24T03:40:49.9764762Z  if [ -z "$CHANGED_FILES" ]; then 2025-07-24T03:40:49.9766038Z  echo "No changed files found, setting to '*'" 2025-07-24T03:40:49.9767195Z  CHANGED_FILES="*" 2025-07-24T03:40:49.9768141Z  fi 2025-07-24T03:40:49.9768909Z  2025-07-24T03:40:49.9769836Z  echo "Changed files: $CHANGED_FILES" 2025-07-24T03:40:49.9771117Z  echo "changed-files=$CHANGED_FILES" >> "$GITHUB_OUTPUT" 2025-07-24T03:40:49.9772233Z  2025-07-24T03:40:49.9773081Z else 2025-07-24T03:40:49.9773996Z  echo "Not in PR context, setting changed files to '*'" 2025-07-24T03:40:49.9775423Z  echo "changed-files=*" >> "$GITHUB_OUTPUT" 2025-07-24T03:40:49.9776582Z fi 2025-07-24T03:40:50.0233865Z shell: /usr/bin/bash -e {0} 2025-07-24T03:40:50.0235619Z env: 2025-07-24T03:40:50.0237099Z GH_TOKEN: *** 2025-07-24T03:40:50.0238060Z ##[endgroup] 2025-07-24T03:40:50.0524582Z Running in PR context 2025-07-24T03:40:51.8531452Z Changed files: benchmarks/dynamo/common.py test/cpp/aoti_inference/compile_model.py test/cpp/aoti_inference/generate_lowered_cpu.py test/cpp/aoti_inference/test.py test/inductor/test_aot_inductor.py test/inductor/test_aot_inductor_arrayref.py test/inductor/test_aot_inductor_package.py test/inductor/test_aot_inductor_utils.py torch/_inductor/codegen/cpp.py torch/_inductor/codegen/triton.py torch/_inductor/compile_fx.py torch/_inductor/config.py torch/_inductor/fx_passes/mkldnn_fusion.py torch/_inductor/fx_passes/pre_grad.py torch/_inductor/graph.py 2025-07-24T03:40:51.8643282Z Evaluate and set job outputs 2025-07-24T03:40:51.8652404Z Set output 'changed-files' 2025-07-24T03:40:51.8654254Z Cleaning up orphan processes