Skip to content

Commit 4ff9c01

Browse files
authored
Prevent WARP preview workflows from running automatically (#970)
Due to a known issue where WARP preview workflow stalls the machine indefinitely (#772) this PR disables the WARP preview builds from running automatically when modified by a PR. PRs like #935 and #769 have popped up to update/modify the WARP preview workflows and caused the machine to stall -- preventing it from running its usual scheduled jobs or other PRs.
1 parent c2a0daa commit 4ff9c01

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/windows-amd-clang-warp-preview-d3d12.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ permissions:
55

66
on:
77
workflow_dispatch:
8-
pull_request:
9-
paths:
10-
- .github/workflows/windows-amd-clang-warp-preview-d3d12.yaml
8+
## Note: This workflow is intentionally made to NOT run on schedule or when
9+
## modified by a PR due to a known issue where this workflow causes the
10+
## machine to stall indefinitely.
11+
## Issue link: https://github.com/llvm/offload-test-suite/issues/772
1112

1213
jobs:
1314
Windows-D3D12-Warp-Clang:

.github/workflows/windows-amd-dxc-warp-preview-d3d12.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ permissions:
55

66
on:
77
workflow_dispatch:
8-
pull_request:
9-
paths:
10-
- .github/workflows/windows-amd-dxc-warp-preview-d3d12.yaml
8+
## Note: This workflow is intentionally made to NOT run on schedule or when
9+
## modified by a PR due to a known issue where this workflow causes the
10+
## machine to stall indefinitely.
11+
## Issue link: https://github.com/llvm/offload-test-suite/issues/772
1112

1213
jobs:
1314
Windows-D3D12-Warp-DXC:

0 commit comments

Comments
 (0)