WIP: [ci] Nightly builds#8911
Draft
crueter wants to merge 4 commits into
Draft
Conversation
Signed-off-by: crueter <crueter@eden-emu.dev>
Signed-off-by: crueter <crueter@eden-emu.dev>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds a workflow that runs every night at 00:00 UTC. The point of this workflow is to test host compilation on "bleeding edge" software, namely:
This should help to catch compiler changes and errors faster, and hopefully spot situations like Delta's GCC 16 nightmare quicker so they can be addressed in a more timely manner.
Thus, this runs CMake and Gradle for Windows amd64, Arch Linux amd64, and macOS aarch64 every night. At present, this does not run Windows on ARM nor Arch Linux ARM. These should, of course, eventually be added, but I consider this to be well outside this PR's scope.
This depends on #8878 and supersedes my two previous PRs #8862 and #8854. The primary difference between this PR and the previous ones is that this runs separately from pull requests/pushes, and instead runs every night. The idea is to prevent "breaking" changes in XCode, MSVC, or GCC from causing unknown failures within PR runs; if a PR "breaks" something w.r.t to these new/unstable compilers, it can be fixed later once the nightly build catches the error.
TDOO: