Skip to content

Commit bfc84ac

Browse files
abhigunjmrguenther
authored andcommitted
Fix- PR "cmake-build" Check stuck at "pending" Status Issue (openxla#2774)
[Draft] I don't know why this fix is working! workflow name: `CMake Build` JobID: `cmake-build` Issue: As soon as Checks start running for a PR, `cmake-build` check is going to a pending status. Never changed to `in-progress` or `completed`. Note - There is a already a check with `CMake Build / cmake-build (pull_request)` which runs alright. In Branch protection setting of the repo, `cmake-build` is marked as `required`. If we mark it as not `required`, this extra `cmake-build` disappears. Why this fix: updating....
1 parent 5eaab1e commit bfc84ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/buildAndTestCMake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
cmake-build:
3737
# Only run scheduled CI on main repo
3838
if: (github.repository == 'openxla/stablehlo' || github.event_name != 'schedule')
39-
name: "cmake-build ${{ github.event_name == 'schedule' && '(llvm-project@HEAD)' || ''}}"
39+
name: "cmake-build${{ github.event_name == 'schedule' && ' (llvm-project@HEAD)' || ''}}"
4040
env:
4141
LLVM_PROJECT_DIR: "llvm-project"
4242
LLVM_BUILD_DIR: "llvm-build"

0 commit comments

Comments
 (0)