Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b89f1226cc5e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6eea644749f8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 5, 2020

  1. nixos/tests/installer swraid: increase partition size

    We apparently didn't fit anymore.  I don't think this test is meant
    to (also) check closure size.
    
    Note: as of this commit, the test is blocked by a fontconfig problem,
    so I tested with that merge temporarily reverted.
    vcunat committed Sep 5, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    6eea644 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 nixos/tests/installer.nix
8 changes: 4 additions & 4 deletions nixos/tests/installer.nix
Original file line number Diff line number Diff line change
@@ -633,10 +633,10 @@ in {
+ " mklabel msdos"
+ " mkpart primary ext2 1M 100MB" # /boot
+ " mkpart extended 100M -1s"
+ " mkpart logical 102M 2102M" # md0 (root), first device
+ " mkpart logical 2103M 4103M" # md0 (root), second device
+ " mkpart logical 4104M 4360M" # md1 (swap), first device
+ " mkpart logical 4361M 4617M", # md1 (swap), second device
+ " mkpart logical 102M 3102M" # md0 (root), first device
+ " mkpart logical 3103M 6103M" # md0 (root), second device
+ " mkpart logical 6104M 6360M" # md1 (swap), first device
+ " mkpart logical 6361M 6617M", # md1 (swap), second device
"udevadm settle",
"ls -l /dev/vda* >&2",
"cat /proc/partitions >&2",