From ddfae90b19762f1f32ea00cc67e9b67510f9e6db Mon Sep 17 00:00:00 2001 From: Benson Wong <83972+mostlygeek@users.noreply.github.com> Date: Thu, 4 Jun 2026 11:00:43 -0700 Subject: [PATCH] Change cron schedule for container builds Shift the non-unified container builds about 8 hours after the llama.cpp's projects container publishing window. The llama.cpp containers take a few hours to build and publish and 8 hours is expected to be enough time to remain fresh. Additionally, add an extra build at 18:00 in case the 12:00 one does not pick things up. The container builds on the llama-swap side are cheap (just injecting llama-swap binary) so it is fine to run them a bit more frequently. --- .github/workflows/containers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index 4c51f171..5e70c79e 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -2,10 +2,10 @@ name: Build Containers on: # time has no specific meaning, trying to time it after - # the llama.cpp daily packages are published + # the llama.cpp daily packages have time to build and publish (~8hr after llama.cpp project's cron) # https://github.com/ggml-org/llama.cpp/blob/master/.github/workflows/docker.yml schedule: - - cron: "37 5 * * *" + - cron: "00 12,18 * * *" # Allows manual triggering of the workflow workflow_dispatch: