From 13a0d2d1aceea5a1e5fd5ac857113b15983cbbc4 Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Tue, 17 Sep 2024 12:35:53 -0400 Subject: [PATCH] scaleway-cli: 2.33.0 -> 2.34.0 Diff: https://github.com/scaleway/scaleway-cli/compare/v2.33.0...v2.34.0 --- pkgs/tools/admin/scaleway-cli/default.nix | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/tools/admin/scaleway-cli/default.nix b/pkgs/tools/admin/scaleway-cli/default.nix index 2693aa1f7d3a..3939c25b67bf 100644 --- a/pkgs/tools/admin/scaleway-cli/default.nix +++ b/pkgs/tools/admin/scaleway-cli/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "scaleway-cli"; - version = "2.33.0"; + version = "2.34.0"; src = fetchFromGitHub { owner = "scaleway"; repo = "scaleway-cli"; rev = "v${version}"; - sha256 = "sha256-6mmjIrG81uaNfRAXW0YORZfviFwJd1QyORfvMucNWdI="; + sha256 = "sha256-Ynhom4WX1ME6/uI0HQ83S1DgLYN1HjUxKk5CUL/Fgzk="; }; - vendorHash = "sha256-PWjcQD64DEJylRdSUA55iCcKHMdyMh5PrfWnhZz3LOg="; + vendorHash = "sha256-FHvppbAAKW2Nf5GKhMWoMuOgqAp6deOSE61hg7dASqo="; ldflags = [ "-w" @@ -27,19 +27,19 @@ buildGoModule rec { # Some tests require access to scaleway's API, failing when sandboxed preCheck = '' - substituteInPlace internal/core/bootstrap_test.go \ - --replace "TestInterruptError" "SkipInterruptError" + substituteInPlace core/bootstrap_test.go \ + --replace-warn "TestInterruptError" "SkipInterruptError" substituteInPlace internal/e2e/errors_test.go \ - --replace "TestStandardErrors" "SkipStandardErrors" + --replace-warn "TestStandardErrors" "SkipStandardErrors" substituteInPlace internal/e2e/human_test.go \ - --replace "TestTestCommand" "SkipTestCommand" \ - --replace "TestHumanCreate" "SkipHumanCreate" \ - --replace "TestHumanList" "SkipHumanList" \ - --replace "TestHumanUpdate" "SkipHumanUpdate" \ - --replace "TestHumanGet" "SkipHumanGet" \ - --replace "TestHumanDelete" "SkipHumanDelete" + --replace-warn "TestTestCommand" "SkipTestCommand" \ + --replace-warn "TestHumanCreate" "SkipHumanCreate" \ + --replace-warn "TestHumanList" "SkipHumanList" \ + --replace-warn "TestHumanUpdate" "SkipHumanUpdate" \ + --replace-warn "TestHumanGet" "SkipHumanGet" \ + --replace-warn "TestHumanDelete" "SkipHumanDelete" substituteInPlace internal/e2e/sdk_errors_test.go \ - --replace "TestSdkStandardErrors" "SkipSdkStandardErrors" + --replace-warn "TestSdkStandardErrors" "SkipSdkStandardErrors" ''; doInstallCheck = true;