-
Notifications
You must be signed in to change notification settings - Fork 24
Use a larger runner for Windows #396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
CleanCut
wants to merge
20
commits into
main
Choose a base branch
from
cleancut/windows-larger-runner
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+145
−87
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
50f5e2e
use a larger runner that Josh configured for Windows
CleanCut 7836d15
the larger runner apparently doesn't have a D: drive
CleanCut 397f6f5
make it explicit we use Swatinem/rust-cache through the setup-rust-to…
CleanCut 946d75c
do all test builds with the test profile so we stop recompiling so much
CleanCut 239b10d
use Rust's lld linker on Windows
CleanCut 20179d5
have oxen-py use the glob from the workspace
CleanCut 99fdd7a
the test profile doesn't produce symbols for Python to use, so have e…
CleanCut e1fee9e
use the latest version of each runner to avoid Node 20 vs 24 warnings
CleanCut 3d91530
try using a ramdisk on windows for cargo target dir and oxen data dirs
CleanCut 3bf26ed
narrow the windows oxen-server ramdisk usage to data/test/runs
CleanCut 06e1750
avoid using a junction; instead use an env var to point oxen-server t…
CleanCut 584e43c
cache cargo build artifacts on the ramdisk in windows
CleanCut 76f10d9
use a virtual hard drive file on the ramdisk to provide full NTFS com…
CleanCut d8753e3
try bumping the size of the ramdisk and virtual hard drive
CleanCut ea24850
add configuration to store test temp files on the vhd in windows ci
CleanCut 604df35
use the same canonicalization in all the places--it spits out a diffe…
CleanCut adfee3c
try using only the vhd/ramdisk for test data to see if it will fit
CleanCut cf5a0be
try using just a ramdisk for test data
CleanCut 848727a
try splitting python tests into separate workflows
CleanCut 48846ad
use the same build options in python tests so we don't rebuild
CleanCut File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| [target.x86_64-pc-windows-msvc] | ||
| linker = "rust-lld.exe" |
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know how this works. What was this for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The standard
windows-latestrunner currently has aD:drive that is larger and faster thatC:. This just configured env vars so thatD:would be used for temp files for various build tools. The larger runner does not have a separateD:drive, apparently.