forked from LnL7/nix
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'new-store-settings' into settings-split
- Loading branch information
Showing
515 changed files
with
11,098 additions
and
4,895 deletions.
There are no files selected for viewing
This file contains 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 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 was deleted.
Oops, something went wrong.
This file contains 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 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,92 @@ | ||
queue_rules: | ||
- name: default | ||
# all required tests need to go here | ||
merge_conditions: | ||
- check-success=installer | ||
- check-success=installer_test (macos-latest) | ||
- check-success=installer_test (ubuntu-latest) | ||
- check-success=tests (macos-latest) | ||
- check-success=tests (ubuntu-latest) | ||
- check-success=vm_tests | ||
merge_method: rebase | ||
batch_size: 5 | ||
|
||
pull_request_rules: | ||
- name: merge using the merge queue | ||
conditions: | ||
- base=master | ||
- label~=merge-queue|dependencies | ||
actions: | ||
queue: {} | ||
|
||
# The rules below will first create backport pull requests and put those in a merge queue. | ||
|
||
- name: backport patches to 2.18 | ||
conditions: | ||
- label=backport 2.18-maintenance | ||
actions: | ||
backport: | ||
branches: | ||
- 2.18-maintenance | ||
labels: | ||
- merge-queue | ||
|
||
- name: backport patches to 2.19 | ||
conditions: | ||
- label=backport 2.19-maintenance | ||
actions: | ||
backport: | ||
branches: | ||
- 2.19-maintenance | ||
labels: | ||
- merge-queue | ||
|
||
- name: backport patches to 2.20 | ||
conditions: | ||
- label=backport 2.20-maintenance | ||
actions: | ||
backport: | ||
branches: | ||
- 2.20-maintenance | ||
labels: | ||
- merge-queue | ||
|
||
- name: backport patches to 2.21 | ||
conditions: | ||
- label=backport 2.21-maintenance | ||
actions: | ||
backport: | ||
branches: | ||
- 2.21-maintenance | ||
labels: | ||
- merge-queue | ||
|
||
- name: backport patches to 2.22 | ||
conditions: | ||
- label=backport 2.22-maintenance | ||
actions: | ||
backport: | ||
branches: | ||
- 2.22-maintenance | ||
labels: | ||
- merge-queue | ||
|
||
- name: backport patches to 2.23 | ||
conditions: | ||
- label=backport 2.23-maintenance | ||
actions: | ||
backport: | ||
branches: | ||
- 2.23-maintenance | ||
labels: | ||
- merge-queue | ||
|
||
- name: backport patches to 2.24 | ||
conditions: | ||
- label=backport 2.24-maintenance | ||
actions: | ||
backport: | ||
branches: | ||
- "2.24-maintenance" | ||
labels: | ||
- merge-queue |
This file contains 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 |
---|---|---|
@@ -1 +1 @@ | ||
2.24.0 | ||
2.25.0 |
This file contains 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 |
---|---|---|
|
@@ -41,9 +41,9 @@ Check out the [security policy](https://github.com/NixOS/nix/security/policy). | |
There are many open pull requests that might already do what you intend to work on. | ||
You can use [labels](https://github.com/NixOS/nix/labels) to filter for relevant topics. | ||
|
||
3. Check the [Nix reference manual](https://nixos.org/manual/nix/unstable/contributing/hacking.html) for information on building Nix and running its tests. | ||
3. Check the [Nix reference manual](https://nix.dev/manual/nix/development/development/building.html) for information on building Nix and running its tests. | ||
|
||
For contributions to the command line interface, please check the [CLI guidelines](https://nixos.org/manual/nix/unstable/contributing/cli-guideline.html). | ||
For contributions to the command line interface, please check the [CLI guidelines](https://nix.dev/manual/nix/development/development/cli-guideline.html). | ||
|
||
4. Make your change! | ||
|
||
|
@@ -52,6 +52,20 @@ Check out the [security policy](https://github.com/NixOS/nix/security/policy). | |
|
||
Link related issues to inform interested parties and future contributors about your change. | ||
If your pull request closes one or multiple issues, mention that in the description using `Closes: #<number>`, as it will then happen automatically when your change is merged. | ||
* Credit original authors when you're reusing or building on their work. | ||
* Link to relevant changes in other projects, so that others can understand the full context of the change in the future when you or someone else will change or troubleshoot the code. | ||
This is especially important when your change is based on work done in other repositories. | ||
|
||
Example: | ||
``` | ||
This is based on the work of @user in <url>. | ||
This solution took inspiration from <url>. | ||
Co-authored-by: User Name <[email protected]> | ||
``` | ||
When cherry-picking from a different repository, use the `-x` flag, and then amend the commits to turn the hashes into URLs. | ||
* Make sure to have [a clean history of commits on your branch by using rebase](https://www.digitalocean.com/community/tutorials/how-to-rebase-and-update-a-pull-request). | ||
* [Mark the pull request as draft](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request) if you're not done with the changes. | ||
|
@@ -69,7 +83,7 @@ Check out the [security policy](https://github.com/NixOS/nix/security/policy). | |
- [ ] API documentation in header files | ||
- [ ] Code and comments are self-explanatory | ||
- [ ] Commit message explains **why** the change was made | ||
- [ ] New feature or incompatible change: [add a release note](https://nixos.org/manual/nix/stable/contributing/hacking#add-a-release-note) | ||
- [ ] New feature or incompatible change: [add a release note](https://nix.dev/manual/nix/development/development/contributing.html#add-a-release-note) | ||
7. If you need additional feedback or help to getting pull request into shape, ask other contributors using [@mentions](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#mentioning-people-and-teams). | ||
|
@@ -78,9 +92,9 @@ Check out the [security policy](https://github.com/NixOS/nix/security/policy). | |
The Nix reference manual is hosted on https://nixos.org/manual/nix. | ||
The underlying source files are located in [`doc/manual/src`](./doc/manual/src). | ||
For small changes you can [use GitHub to edit these files](https://docs.github.com/en/repositories/working-with-files/managing-files/editing-files) | ||
For larger changes see the [Nix reference manual](https://nixos.org/manual/nix/unstable/contributing/hacking.html). | ||
For larger changes see the [Nix reference manual](https://nix.dev/manual/nix/development/development/contributing.html). | ||
## Getting help | ||
Whenever you're stuck or do not know how to proceed, you can always ask for help. | ||
The appropriate channels to do so can be found on the [NixOS Community](https://nixos.org/community/) page. | ||
We invite you to use our [Matrix room](https://matrix.to/#/#nix-dev:nixos.org) to ask questions. |
This file contains 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 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 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 |
---|---|---|
@@ -1,13 +1,11 @@ | ||
add_project_arguments( | ||
'-Wno-deprecated-declarations', | ||
'-Wimplicit-fallthrough', | ||
'-Wdeprecated-copy', | ||
'-Werror=suggest-override', | ||
'-Werror=switch', | ||
'-Werror=switch-enum', | ||
'-Werror=unused-result', | ||
'-Wdeprecated-copy', | ||
'-Wignored-qualifiers', | ||
# Enable assertions in libstdc++ by default. Harmless on libc++. Benchmarked | ||
# at ~1% overhead in `nix search`. | ||
# | ||
'-Wimplicit-fallthrough', | ||
'-Wno-deprecated-declarations', | ||
language : 'cpp', | ||
) |
This file contains 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 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 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 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 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.