summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2024-01-23 15:27:54 -0500
committerGitHub <noreply@github.com>2024-01-23 15:27:54 -0500
commiteabddf22e20bc5fd62edda677056e1d635f8e7f4 (patch)
treed2c7fa375562ea23b062ced7b6c734d323e9163e
parentd86a6eacf661f2bf05ea486b7a04b0cc1f97919c (diff)
[libc++] Run the nightly libc++ build at 03:00 Eastern for real (#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.
-rw-r--r--.github/workflows/libcxx-build-and-test.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index 0cab9b841e4e..5727b956dc6d 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