[llvm] [libc++] Run the nightly libc++ build at 03:00 Eastern for real (PR #79184)
Louis Dionne via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 23 10:09:37 PST 2024
https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/79184
The nightly libc++ build was incorrectly set up to build at 22:00 Eastern when it intended to run at 03:00 Eastern. This patch fixes that.
>From 0a94ecd045de32e67fe176e614f4d214a1dcf945 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Tue, 23 Jan 2024 13:05:07 -0500
Subject: [PATCH] [libc++] Run the nightly libc++ build at 03:00 Eastern for
real
The nightly libc++ build was incorrectly set up to build at 22:00 Eastern
when it intended to run at 03:00 Eastern. This patch fixes that.
---
.github/workflows/libcxx-build-and-test.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index 0cab9b841e4ee15..5727b956dc6dd23 100644
--- a/.github/workflows/libcxx-build-and-test.yaml
+++ b/.github/workflows/libcxx-build-and-test.yaml
@@ -23,8 +23,8 @@ on:
- 'cmake/**'
- '.github/workflows/libcxx-build-and-test.yaml'
schedule:
- # Run nightly at 8 AM UTC (or roughly 3 AM eastern)
- - cron: '0 3 * * *'
+ # Run nightly at 08:00 UTC (aka 00:00 Pacific, aka 03:00 Eastern)
+ - cron: '0 8 * * *'
permissions:
contents: read # Default everything to read-only
More information about the llvm-commits
mailing list