-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fallback to copy symlinks on Windows #9296
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
487336b
Fallback to copy symlinks on Windows
larskanis 2dea8e3
Adjust tests reg. previous commit and symlinks on Windows
larskanis 8bb5a2f
Add a test run on Windows with non-admin user and disabled developer …
larskanis 1a1e2f3
Update Windows symlink patch based on PR reviews
larskanis 3226957
Print outputs of non-admin Windows user as soon as possible
larskanis 475081e
Remove permission change in rubygems tests for unprivileged user
larskanis 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
Some comments aren't visible on the classic Files Changed page.
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
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,36 @@ | ||
| require "win32/process" | ||
| require "rbconfig" | ||
|
|
||
| testuser = "testuser" | ||
| testpassword = "Password123+" | ||
|
|
||
| # Remove a previous test user if present | ||
| # See https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/net-user | ||
| system("net user #{testuser} /del 2>NUL") | ||
| # Create a new non-admin user | ||
| system("net user #{testuser} \"#{testpassword}\" /add") | ||
|
|
||
| pinfo = nil | ||
| IO.pipe do |stdout_read, stdout_write| | ||
| cmd = ARGV.join(" ") | ||
| env = { | ||
| "TMP" => "#{Dir.pwd}/tmp", | ||
| "TEMP" => "#{Dir.pwd}/tmp" | ||
| } | ||
| pinfo = Process.create command_line: cmd, | ||
| with_logon: testuser, | ||
| password: testpassword, | ||
| cwd: Dir.pwd, | ||
| environment: ENV.to_h.merge(env).map{|k,v| "#{k}=#{v}" }, | ||
| startup_info: { stdout: stdout_write, stderr: stdout_write } | ||
|
|
||
| stdout_write.close | ||
| stdout_read.each_line do |line| | ||
| puts(line) | ||
| end | ||
| end | ||
|
|
||
| # Wait for process to terminate | ||
| sleep 1 while !(ecode=Process.get_exitcode(pinfo.process_id)) | ||
|
|
||
| exit ecode |
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.
Uh oh!
There was an error while loading. Please reload this page.