Updated Jenkins Shared Driver letter

This commit is contained in:
Shital Savekar 2018-05-29 23:38:02 -07:00
Родитель 03e7049412
Коммит 555baa819d
8 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -368,7 +368,7 @@ stage('Capture VHD with Custom Kernel')
withCredentials([file(credentialsId: 'Azure_Secrets_File', variable: 'Azure_Secrets_File')])
{
RunPowershellCommand (".\\Utilities\\AddAzureRmAccountFromSecretsFile.ps1;" +
".\\JenkinsPipelines\\Scripts\\InspectCustomKernel.ps1 -RemoteFolder 'Z:\\ReceivedFiles' -LocalFolder '.'"
".\\JenkinsPipelines\\Scripts\\InspectCustomKernel.ps1 -RemoteFolder 'J:\\ReceivedFiles' -LocalFolder '.'"
)
KernelFile = readFile 'CustomKernel.azure.env'
stash includes: KernelFile, name: 'CustomKernelStash'

Просмотреть файл

@ -1,7 +1,7 @@
param
(
$JenkinsUser,
$RemoteReceivedFolder = "Z:\ReceivedFiles",
$RemoteReceivedFolder = "J:\ReceivedFiles",
$fileNames
)
Get-ChildItem .\Libraries -Recurse | Where-Object { $_.FullName.EndsWith(".psm1") } | ForEach-Object { Import-Module $_.FullName -Force -Global }

Просмотреть файл

@ -1,7 +1,7 @@
Param
(
$JenkinsUser,
$RemoteReceivedFolder="Z:\ReceivedFiles",
$RemoteReceivedFolder="J:\ReceivedFiles",
$htmlFilePath,
$textFilePath,
$cleanupFilesPath

Просмотреть файл

@ -1,5 +1,5 @@
Param (
$RemoteFolder = "Z:\ReceivedFiles",
$RemoteFolder = "J:\ReceivedFiles",
$LocalFolder = "Q:\Temp"
)

Просмотреть файл

@ -1,5 +1,5 @@
Param (
$RemoteFolder = "Z:\ReceivedFiles",
$RemoteFolder = "J:\ReceivedFiles",
$LocalFolder = "Q:\Temp"
)

Просмотреть файл

@ -1,5 +1,5 @@
param (
[string]$SharedParentDirectory = "Z:\ReceivedFiles",
[string]$SharedParentDirectory = "J:\ReceivedFiles",
[string]$PartnerUsername
)

Просмотреть файл

@ -1,6 +1,6 @@
Param
(
$OutputFilePath = "Z:\Jenkins_Shared_Do_Not_Delete\userContent\common\VMSizes-ARM.txt"
$OutputFilePath = "J:\Jenkins_Shared_Do_Not_Delete\userContent\common\VMSizes-ARM.txt"
)
Get-ChildItem .\Libraries -Recurse | Where-Object { $_.FullName.EndsWith(".psm1") } | ForEach-Object { Import-Module $_.FullName -Force -Global }
try

Просмотреть файл

@ -1,6 +1,6 @@
Param
(
$OutputFilePath = "Z:\Jenkins_Shared_Do_Not_Delete\userContent\common\VMImages-ARM.txt",
$OutputFilePath = "J:\Jenkins_Shared_Do_Not_Delete\userContent\common\VMImages-ARM.txt",
$Publishers = "Canonical,SUSE,Oracle,CoreOS,RedHat,OpenLogic,credativ,kali-linux,clear-linux-project"
)
Get-ChildItem .\Libraries -Recurse | Where-Object { $_.FullName.EndsWith(".psm1") } | ForEach-Object { Import-Module $_.FullName -Force -Global }