python312Packages.slack-sdk: 3.33.3 -> 3.33.4 (#358119)
[NixPkgs.git] / pkgs / tools / package-management / nix / README.md
blob0b87fdf1088ba6a1194b557eb2b7ea03d15c1085
1 # Steps for Testing New Releases
3 ## Patch Releases or Updating `nixVersions.{latest,git}`
5 Branch to merge into: **master** or **release-$nixos-version**
7 Build the affected Nix packages and run their tests on the following platforms: **x86_64-linux**, **aarch64-linux**, **x86_64-darwin**, and **aarch64-darwin**.
8 If you lack the necessary hardware for these platforms, you may need to ask others for assistance with the builds.
9 Alternatively, you can request access to the Nix community builder for all platforms [here](https://github.com/NixOS/aarch64-build-box) and [here](https://nix-community.org/community-builder/).
11 To build all dependent packages, use:
13 ```
14 nixpkgs-review pr <your-pull-request>
15 ```
17 And to build all important NixOS tests, run:
19 ```
20 # Replace $version with the actual Nix version
21 nix-build nixVersions.nix_$version.tests
22 ```
24 Be sure to also update the `nix-fallback-paths` whenever you do a patch release for `nixVersions.stable`
26 ```
27 # Replace $version with the actual Nix version
28 curl https://releases.nixos.org/nix/nix-$version/fallback-paths.nix > nixos/modules/installer/tools/nix-fallback-paths.nix
29 ```
31 ## Major Version Bumps
33 If you're updating `nixVersions.stable`, follow all the steps mentioned above, but use the **staging** branch for your pull request (or **staging-next** after coordinating with the people in matrix `#staging:nixos.org`)
34 This is necessary because, at the end of the staging-next cycle, the NixOS tests are built through the [staging-next-small](https://hydra.nixos.org/jobset/nixos/staging-next-small) jobset.
35 Especially nixos installer test are important to look at here.
37 There is a script to update minor versions:
39 ```
40 ./pkgs/tools/package-management/nix/update-all.sh
41 ```