Skip to content

Commit ede5673

Browse files
committed
Bump cron job timing to every 30 minutes
This will work for now since the tests are fast, I'll eventually need to load balance it better.
1 parent bf4d9bd commit ede5673

8 files changed

+8
-8
lines changed

.github/workflows/macos-clang-mtl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 2 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
macOS-Metal-Clang:

.github/workflows/macos-dxc-mtl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 2 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
macOS-Metal-DXC:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 12 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
Windows-D3D12-Intel-Clang:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 12 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
Windows-VK-Intel-Clang:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 12 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
Windows-D3D12-Warp-Clang:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 2 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
Windows-D3D12-Intel-DXC:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 2 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
Windows-VK-Intel-DXC:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66

77
on:
88
schedule:
9-
- cron: '0 */2 * * *' # run every 2 hours
9+
- cron: '0,30 * * * *' # run every 30 minutes
1010

1111
jobs:
1212
Windows-D3D12-Warp-DXC:

0 commit comments

Comments
 (0)