Commit 85457b7 1 parent 1583f58 commit 85457b7 Copy full SHA for 85457b7
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 36
36
outputs :
37
37
whl_name :
38
38
description : The name of the wheel file
39
- value : ${{ jobs.Torch-XPU-Build .outputs.whl_name }}
39
+ value : ${{ jobs.build .outputs.whl_name }}
40
40
torch_commit_id :
41
41
description : The commit id of the torch build
42
- value : ${{ jobs.Torch-XPU-Build .outputs.TORCH_COMMIT_ID }}
42
+ value : ${{ jobs.build .outputs.TORCH_COMMIT_ID }}
43
43
44
44
permissions :
45
45
issues : write
@@ -116,7 +116,7 @@ jobs:
116
116
WERROR=1 python setup.py bdist_wheel 2>&1 | tee pytorch_${current_commit}_build.log
117
117
118
118
if [[ ${is_fork_pr} == "false" ]]; then
119
- if [ -f dist/torch*.whl && "${last_commit}" != "${current_commit}"] && [[ "${{ inputs.pytorch }}" == "main" || "${{ inputs.pytorch }}" == "release/"* ]]; then
119
+ if [ -f dist/torch*.whl && "${last_commit}" != "${current_commit}" ] && [[ "${{ inputs.pytorch }}" == "main" || "${{ inputs.pytorch }}" == "release/"* ]]; then
120
120
echo "Wheel build successful, update last commit in the issue https://github.com/intel/torch-xpu-ops/issues/1280"
121
121
gh --repo $repo issue view $commit_issue --json body -q .body | sed "s;${last_commit};${current_commit};g" | sed '/^$/d' > new_body.txt
122
122
gh --repo $repo issue edit $commit_issue --body-file new_body.txt
You can’t perform that action at this time.
0 commit comments