Skip to content

Commit e4c9176

Browse files
committed
Update jobs to run hourly
The intel builder in particular can't keep up with every 30 minutes.
1 parent 5d372ff commit e4c9176

10 files changed

+14
-14
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: '*/30 * * * *' # run every 30 minutes
10+
- cron: '0 * * * *' # run every 30 minutes
1111

1212
jobs:
1313
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
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '*/30 * * * *' # run every 30 minutes
10+
- cron: '0 * * * *' # run every 30 minutes
1111

1212
jobs:
1313
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
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '*/30 * * * *' # run every 30 minutes
10+
- cron: '0 * * * *' # run every 30 minutes
1111

1212
jobs:
1313
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
@@ -7,7 +7,7 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '*/30 * * * *' # run every 30 minutes
10+
- cron: '0 * * * *' # run every 30 minutes
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: '*/30 * * * *' # run every 30 minutes
10+
- cron: '0 * * * *' # run every 30 minutes
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: '*/30 * * * *' # run every 30 minutes
10+
- cron: '0 * * * *' # run every 30 minutes
1111

1212
pull_request:
1313
branches:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '*/30 0-12 * * 1-5' # run every 30 minutes overnight
11-
- cron: '*/30 * * * 0,6' # run every 30 minutes on weekends
10+
- cron: '0 0-12 * * 1-5' # run every 30 minutes overnight
11+
- cron: '0 * * * 0,6' # run every 30 minutes on weekends
1212

1313
jobs:
1414
Windows-D3D12-NVIDIA-Clang:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '*/30 0-12 * * 1-5' # run every 30 minutes overnight
11-
- cron: '*/30 * * * 0,6' # run every 30 minutes on weekends
10+
- cron: '0 0-12 * * 1-5' # run every 30 minutes overnight
11+
- cron: '0 * * * 0,6' # run every 30 minutes on weekends
1212

1313
jobs:
1414
Windows-VK-Intel-Clang:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '*/30 0-12 * * 1-5' # run every 30 minutes overnight
11-
- cron: '*/30 * * * 0,6' # run every 30 minutes on weekends
10+
- cron: '0 0-12 * * 1-5' # run every 30 minutes overnight
11+
- cron: '0 * * * 0,6' # run every 30 minutes on weekends
1212

1313
jobs:
1414
Windows-D3D12-NVIDIA-DXC:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ permissions:
77
on:
88
workflow_dispatch:
99
schedule:
10-
- cron: '*/30 0-12 * * 1-5' # run every 30 minutes overnight
11-
- cron: '*/30 * * * 0,6' # run every 30 minutes on weekends
10+
- cron: '0 0-12 * * 1-5' # run every 30 minutes overnight
11+
- cron: '0 * * * 0,6' # run every 30 minutes on weekends
1212

1313
jobs:
1414
Windows-VK-NVIDIA-DXC:

0 commit comments

Comments
 (0)