correct ci variable name

Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
Travis Glenn Hansen 2023-04-02 10:42:16 -06:00
parent da319b1d33
commit 6b4bec1aab
1 changed files with 7 additions and 7 deletions

View File

@ -29,13 +29,13 @@ Write-Output "csi.stagingdir: ${env:CSI_SANITY_TEMP_DIR}\stage"
$exe = "csi-sanity.exe" $exe = "csi-sanity.exe"
$exeargs = @() $exeargs = @()
$xecargs += "-csi.endpoint", "unix://${endpoint}" $exeargs += "-csi.endpoint", "unix://${endpoint}"
$xecargs += "-csi.mountdir", "${env:CSI_SANITY_TEMP_DIR}\mnt" $exeargs += "-csi.mountdir", "${env:CSI_SANITY_TEMP_DIR}\mnt"
$xecargs += "-csi.stagingdir", "${env:CSI_SANITY_TEMP_DIR}\stage" $exeargs += "-csi.stagingdir", "${env:CSI_SANITY_TEMP_DIR}\stage"
$xecargs += "-csi.testvolumeexpandsize", "2147483648" $exeargs += "-csi.testvolumeexpandsize", "2147483648"
$xecargs += "-csi.testvolumesize", "1073741824" $exeargs += "-csi.testvolumesize", "1073741824"
$xecargs += "-ginkgo.skip", "${env:CSI_SANITY_SKIP}" $exeargs += "-ginkgo.skip", "${env:CSI_SANITY_SKIP}"
$xecargs += "-ginkgo.focus", "${env:CSI_SANITY_FOCUS}" $exeargs += "-ginkgo.focus", "${env:CSI_SANITY_FOCUS}"
if ($env:CSI_SANITY_FAILFAST -eq "true") { if ($env:CSI_SANITY_FAILFAST -eq "true") {
$exeargs += "-ginkgo.fail-fast" $exeargs += "-ginkgo.fail-fast"