Родитель
84ed37d3bd
Коммит
3fb8858f82
|
@ -29,6 +29,8 @@ What's changed since v1.5.0:
|
|||
- Configure repository to install modules from the named repository.
|
||||
- General improvements:
|
||||
- Expose more rule error output in CI. [#308](https://github.com/microsoft/PSRule-pipelines/issues/308)
|
||||
- Bug fixes:
|
||||
- Fixed failure loading VstsTaskSdk. [#361](https://github.com/microsoft/PSRule-pipelines/issues/361)
|
||||
|
||||
## v1.5.0
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ async function run() {
|
|||
// Import SDK
|
||||
contents.push(`$rootPath = '${__dirname}';`);
|
||||
contents.push(`$sdkPath = Join-Path -Path $rootPath -ChildPath 'ps_modules/VstsTaskSdk';`);
|
||||
contents.push(`Import-Module $sdkPath -ArgumentList @{ NonInteractive = 'true' }`);
|
||||
contents.push(`Import-Module $sdkPath -ArgumentList @{ NonInteractive = 'true' } -ErrorAction Stop`);
|
||||
|
||||
// Prepare parameters
|
||||
contents.push(`$scriptParams = @{ Path = '${input_path}'; InputType = '${input_inputType}'; InputPath = '${input_inputPath}' };`);
|
||||
|
|
|
@ -25,7 +25,7 @@ async function run() {
|
|||
// Import SDK
|
||||
contents.push(`$rootPath = '${__dirname}';`);
|
||||
contents.push(`$sdkPath = Join-Path -Path $rootPath -ChildPath 'ps_modules/VstsTaskSdk';`);
|
||||
contents.push(`Import-Module $sdkPath -ArgumentList @{ NonInteractive = 'true' }`);
|
||||
contents.push(`Import-Module $sdkPath -ArgumentList @{ NonInteractive = 'true' } -ErrorAction Stop`);
|
||||
|
||||
// Prepare parameters
|
||||
contents.push(`$scriptParams = @{ };`);
|
||||
|
|
|
@ -55,6 +55,10 @@
|
|||
"path": "ps_modules/PSRule/1.11.1",
|
||||
"packagePath": "/ps-rule-assert/ps-rule-assertV0/ps_modules/PSRule/1.11.1"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/VstsTaskSdk",
|
||||
"packagePath": "/ps-rule-assert/ps-rule-assertV0/ps_modules/VstsTaskSdk"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/PowerShellGet",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV0/ps_modules/PowerShellGet"
|
||||
|
@ -63,10 +67,18 @@
|
|||
"path": "ps_modules/PackageManagement",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV0/ps_modules/PackageManagement"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/VstsTaskSdk",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV0/ps_modules/VstsTaskSdk"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/PSRule/1.11.1",
|
||||
"packagePath": "/ps-rule-assert/ps-rule-assertV1/ps_modules/PSRule/1.11.1"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/VstsTaskSdk",
|
||||
"packagePath": "/ps-rule-assert/ps-rule-assertV1/ps_modules/VstsTaskSdk"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/PowerShellGet",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV1/ps_modules/PowerShellGet"
|
||||
|
@ -75,6 +87,10 @@
|
|||
"path": "ps_modules/PackageManagement",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV1/ps_modules/PackageManagement"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/VstsTaskSdk",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV1/ps_modules/VstsTaskSdk"
|
||||
},
|
||||
{
|
||||
"path": "modules.json",
|
||||
"packagePath": "/ps-rule-assert/ps-rule-assertV2/modules.json"
|
||||
|
@ -83,6 +99,10 @@
|
|||
"path": "ps_modules/PSRule/2.0.0",
|
||||
"packagePath": "/ps-rule-assert/ps-rule-assertV2/ps_modules/PSRule/2.0.0"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/VstsTaskSdk",
|
||||
"packagePath": "/ps-rule-assert/ps-rule-assertV2/ps_modules/VstsTaskSdk"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/PowerShellGet",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV2/ps_modules/PowerShellGet"
|
||||
|
@ -90,6 +110,10 @@
|
|||
{
|
||||
"path": "ps_modules/PackageManagement",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV2/ps_modules/PackageManagement"
|
||||
},
|
||||
{
|
||||
"path": "ps_modules/VstsTaskSdk",
|
||||
"packagePath": "/ps-rule-install/ps-rule-installV2/ps_modules/VstsTaskSdk"
|
||||
}
|
||||
],
|
||||
"contributions": [
|
||||
|
|
Загрузка…
Ссылка в новой задаче