Skip to content

Commit 760cac9

Browse files
committed
Adjust schedule of workflows.
The numpy image depends on the cpython image and the scipy image depends on numpy. Try to give them enough time for each to complete. Using 'workflow_call' and 'needs' would be another solution but this is simpler.
1 parent b6c38c3 commit 760cac9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker_image_cpython.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212
- '3.14t'
1313
- '3.14t-dev'
1414
schedule:
15-
# 03:42 on Sundays and Wednesdays
16-
- cron: "42 3 * * SUN,WED"
15+
# 03:02 on Sundays and Wednesdays
16+
- cron: "02 3 * * SUN,WED"
1717

1818
jobs:
1919

.github/workflows/docker_image_numpy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ on:
1212
- '3.14t'
1313
- '3.14t-dev'
1414
schedule:
15-
# 03:32 on Sundays and Wednesdays
16-
- cron: "32 3 * * SUN,WED"
15+
# 03:22 on Sundays and Wednesdays
16+
- cron: "22 3 * * SUN,WED"
1717

1818
jobs:
1919

0 commit comments

Comments
 (0)