Skip to content

Commit ca26219

Browse files
committed
kubo-migrator: add migration from 15 to 16
1 parent 9e2866d commit ca26219

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

pkgs/by-name/ku/kubo-fs-repo-migrations/package.nix

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,16 @@ let
5858
cd migration
5959
go test -mod=vendor
6060
''
61-
else
61+
else if to <= 15 then
6262
''
6363
cd not-sharness
6464
./test.sh
6565
''
66+
else
67+
''
68+
cd test-e2e
69+
./test.sh
70+
''
6671
}
6772
runHook postCheck
6873
'';
@@ -209,6 +214,12 @@ let
209214
release = "1.0.1";
210215
hash = "sha256-u7PM6kFCQUn07NGpeRYpBDEwc2pP+r5mf44LZU4DV5Y=";
211216
}
217+
{
218+
from = 15;
219+
to = 16;
220+
release = "1.0.1";
221+
hash = "sha256-/TG5GNSyV8gsngRT/0jazkL2n2RzA9h1gCTLqGOrI0A=";
222+
}
212223
];
213224

214225
maxRepoVersion = builtins.length releases;

0 commit comments

Comments
 (0)