rustfs: 1.0.0-beta.10 -> 1.0.0-beta.11 (#545692)

This commit is contained in:
Sandro
2026-07-25 19:23:57 +00:00
committed by GitHub
+8 -13
View File
@@ -15,7 +15,7 @@
let
console = stdenv.mkDerivation (finalAttrs: {
pname = "rustfs-console";
version = "0.1.16";
version = "0.1.17";
__structuredAttrs = true;
__darwinAllowLocalNetworking = true;
@@ -23,7 +23,7 @@ let
owner = "rustfs";
repo = "console";
tag = "v${finalAttrs.version}";
hash = "sha256-WZ1vROBZJltcaXdwIuTsRmOY2iZxIoi7yW8lapZcaHo=";
hash = "sha256-t1NYCSdhCYSRjQ/qp+lFP43/N9UXapGiLN7a0gcUaYU=";
};
pnpmDeps = fetchPnpmDeps {
@@ -51,14 +51,14 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "rustfs";
version = "1.0.0-beta.10";
version = "1.0.0-beta.11";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "rustfs";
repo = "rustfs";
tag = version;
hash = "sha256-lBkfaTH36MhWHk39Ie2uQqcU+yf76uImPdV91C8kWV8=";
hash = "sha256-arwTgRwUr7/mgobtxnkhxD1mu4LrrEqKnrewacpc6ro=";
};
postPatch = ''
@@ -66,7 +66,7 @@ rustPlatform.buildRustPackage rec {
cp -rL ${console} ./rustfs/static
'';
cargoHash = "sha256-PMgC4+/n/UOpBa5oiZ1F17oht5YmN1RzoFIA0qE+h6M=";
cargoHash = "sha256-cMOPQ70hGFJEdYkrizgrwJOfga9UvqJRPdQbX/Whhuk=";
nativeBuildInputs = [
protobuf
@@ -83,14 +83,9 @@ rustPlatform.buildRustPackage rec {
cargoBuildFlags = "-p rustfs";
cargoTestFlags = "-p rustfs";
checkFlags = [
# require real disks
"--skip=app::capacity_dirty_scope_test"
"--skip=app::delete_objects_stat_gating_test"
"--skip=app::put_prelookup_gating_test"
# non-deterministically panics
"--skip=two_embedded_servers_isolate_auth_and_data_planes"
];
# tests share global state and fail depending on execution order,
# upstream uses nexttest to run tests in separate processes
useNextest = true;
passthru.tests = {
inherit (nixosTests) rustfs;