[llvm] [libc++] Run the nightly libc++ build at 03:00 Eastern for real (PR #79184)

via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 23 10:09:58 PST 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxx

Author: Louis Dionne (ldionne)

<details>
<summary>Changes</summary>

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.

---
Full diff: https://github.com/llvm/llvm-project/pull/79184.diff


1 Files Affected:

- (modified) .github/workflows/libcxx-build-and-test.yaml (+2-2) 


``````````diff
diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml
index 0cab9b841e4ee1..5727b956dc6dd2 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

``````````

</details>


https://github.com/llvm/llvm-project/pull/79184


More information about the llvm-commits mailing list