Skip to content

Commit b96a24f

Browse files
authored
Reduce intel builder schedule (#195)
The intel builder is a single machine building 6 configurations... It just can't keep up. This reduces the scheduled builds to every 2 hours to help it stay on top of PRs.
1 parent 55a8337 commit b96a24f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/windows-intel-clang-d3d12.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '0 * * * *' # run every 30 minutes
10+
- cron: '0 */2 * * *' # run every 2 hours
1111

1212
pull_request:
1313
branches:

.github/workflows/windows-intel-clang-vk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '0 * * * *' # run every 30 minutes
10+
- cron: '0 */2 * * *' # run every 2 hours
1111

1212
pull_request:
1313
branches:

.github/workflows/windows-intel-clang-warp-d3d12.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '0 * * * *' # run every 30 minutes
10+
- cron: '0 */2 * * *' # run every 2 hours
1111

1212
pull_request:
1313
branches:

.github/workflows/windows-intel-dxc-vk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '0 * * * *' # run every 30 minutes
10+
- cron: '0 */2 * * *' # run every 2 hours
1111

1212
pull_request:
1313
branches:

.github/workflows/windows-intel-dxc-warp-d3d12.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '0 * * * *' # run every 30 minutes
10+
- cron: '0 */2 * * *' # run every 2 hours
1111

1212
pull_request:
1313
branches:

0 commit comments

Comments
 (0)