Merge pull request #205951 from veehaitch/pulumi-v3.49.0

pulumi, pulumiPackages.pulumi-language-python: 3.48.0 -> 3.49.0
This commit is contained in:
figsoda 2022-12-14 11:33:14 -05:00 committed by GitHub
commit 634a33fa83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -10,7 +10,7 @@ buildGoModule rec {
sourceRoot = "${src.name}/sdk";
vendorHash = "sha256-IZIdLmNGMFjRdkLPoE9UyON3pX/GBIgz/rv108v8iLY=";
vendorHash = "sha256-gM3VpX6r/BScUyvk/XefAfbx0qYzdzSBGaWZN+89BS8=";
postPatch = ''
# Requires network

View File

@ -14,16 +14,16 @@
buildGoModule rec {
pname = "pulumi";
version = "3.48.0";
version = "3.49.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256-8lHNcRYvKa9CJDWe4g4h24TY6mwfYfyQwBcQ4cY/tdQ=";
hash = "sha256-WO+bTkTIAyaXl3nYwsMUTdovsYibivfGsKz6A7wj2zM=";
};
vendorSha256 = "sha256-igZfXUrYA6m42WrBQkQYyGe5p9C8h66Hkezf9a1XFo0=";
vendorSha256 = "sha256-q7ZusTYD8l2RyiwP/Wf6dP6AoosWEwpaylbdhfE5cUA=";
sourceRoot = "source/pkg";
@ -43,6 +43,11 @@ buildGoModule rec {
doCheck = true;
disabledTests = [
# Flaky test
"TestPendingDeleteOrder"
];
checkInputs = [
git
];
@ -63,6 +68,9 @@ buildGoModule rec {
# Code generation tests also download dependencies from network
rm codegen/{docs,dotnet,go,nodejs,python,schema}/*_test.go
rm -R codegen/{dotnet,go,nodejs,python}/gen_program_test
# Only run tests not marked as disabled
buildFlagsArray+=("-run" "[^(${lib.concatStringsSep "|" disabledTests})]")
'' + lib.optionalString stdenv.isDarwin ''
export PULUMI_HOME=$(mktemp -d)
'';