-
Notifications
You must be signed in to change notification settings - Fork 81
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
Add support for nix store remote copying #404
Merged
Merged
Commits on Sep 4, 2023
-
Add support for nix store remote copying
This is a requirement in order to make Bazel remote execution work. Without it it's not guaranteed that any necessary nix paths will be available during the build. Any local derivation will be copied over to a specified remote nix server which will also as a Bazel executor. This way any nix paths required during the build, will be available. The user will have to provide the `BAZEL_NIX_REMOTE` environment variable. This should be the name of any entry on the SSH_CONFIG file where all the authentication details are provided. e.g ```bash $ export BAZEL_NIX_REMOTE=nix-server $ cat ~/.ssh/config Host nix-server Hostname 1.2.3.4 IdentityFile ~/.ssh/nix-server Port 2222 User nix-user ``` This was done in order to simplify the processes of authentication and keep the number of configuration options to a minimum.
Configuration menu - View commit details
-
Copy full SHA for 8c9bda1 - Browse repository at this point
Copy the full SHA 8c9bda1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d0c513 - Browse repository at this point
Copy the full SHA 1d0c513View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa4cf1d - Browse repository at this point
Copy the full SHA aa4cf1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e628fe - Browse repository at this point
Copy the full SHA 7e628feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a110dd - Browse repository at this point
Copy the full SHA 6a110ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for b8d7c52 - Browse repository at this point
Copy the full SHA b8d7c52View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e3009b - Browse repository at this point
Copy the full SHA 6e3009bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e76279 - Browse repository at this point
Copy the full SHA 2e76279View commit details -
Configuration menu - View commit details
-
Copy full SHA for d56e2bd - Browse repository at this point
Copy the full SHA d56e2bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for b8b04cf - Browse repository at this point
Copy the full SHA b8b04cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for a1725d8 - Browse repository at this point
Copy the full SHA a1725d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1965ebd - Browse repository at this point
Copy the full SHA 1965ebdView commit details -
Configuration menu - View commit details
-
Copy full SHA for c18c05e - Browse repository at this point
Copy the full SHA c18c05eView commit details -
Configuration menu - View commit details
-
Copy full SHA for dac4d72 - Browse repository at this point
Copy the full SHA dac4d72View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e8a2f0 - Browse repository at this point
Copy the full SHA 3e8a2f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1cce1ea - Browse repository at this point
Copy the full SHA 1cce1eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ff55c7 - Browse repository at this point
Copy the full SHA 4ff55c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61e99ad - Browse repository at this point
Copy the full SHA 61e99adView commit details -
Configuration menu - View commit details
-
Copy full SHA for a4ea99f - Browse repository at this point
Copy the full SHA a4ea99fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 581e351 - Browse repository at this point
Copy the full SHA 581e351View commit details
Commits on Sep 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7bb3ddd - Browse repository at this point
Copy the full SHA 7bb3dddView commit details -
Configuration menu - View commit details
-
Copy full SHA for bdb8624 - Browse repository at this point
Copy the full SHA bdb8624View commit details -
Configuration menu - View commit details
-
Copy full SHA for 135a261 - Browse repository at this point
Copy the full SHA 135a261View commit details
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.