summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVikram Karve <vikram.karve@progress.com>2022-06-29 23:32:42 +0530
committerVikram Karve <vikram.karve@progress.com>2022-07-14 10:51:37 +0530
commit3d6c81c3c84e1c7ddc06cdaa1c0ec34b974442c3 (patch)
tree75468a86ad80ee91f752985efabf220f407a88db
parent7a3d727cf6d6910f2a8684c5fa03d95a42162479 (diff)
downloadchef-3d6c81c3c84e1c7ddc06cdaa1c0ec34b974442c3.tar.gz
update excluded gem list
Signed-off-by: Vikram Karve <vikram.karve@progress.com>
-rw-r--r--.expeditor/scripts/verify-plan.ps13
-rw-r--r--habitat/plan.ps17
2 files changed, 3 insertions, 7 deletions
diff --git a/.expeditor/scripts/verify-plan.ps1 b/.expeditor/scripts/verify-plan.ps1
index 69660172f7..614d472964 100644
--- a/.expeditor/scripts/verify-plan.ps1
+++ b/.expeditor/scripts/verify-plan.ps1
@@ -7,9 +7,6 @@ param(
[string]$Plan
)
-New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" `
--Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
-
$env:HAB_ORIGIN = 'ci'
$Plan = 'chef-infra-client'
diff --git a/habitat/plan.ps1 b/habitat/plan.ps1
index c916c14f8b..e19e991640 100644
--- a/habitat/plan.ps1
+++ b/habitat/plan.ps1
@@ -63,9 +63,8 @@ function Invoke-Prepare {
Push-Location "${HAB_CACHE_SRC_PATH}/${pkg_dirname}"
Write-BuildLine " ** Configuring bundler for this build environment"
- bundle config --local without server docgen maintenance pry travis integration ci chefstyle
+ bundle config --local without server docgen maintenance pry travis integration ci
if (-not $?) { throw "unable to configure bundler to restrict gems to be installed" }
- bundle config --local jobs 4
bundle config --local retry 5
bundle config --local silence_root_warning 1
} finally {
@@ -94,10 +93,10 @@ function Invoke-Build {
}
}
Write-BuildLine " ** Running the chef project's 'rake install' to install the path-based gems so they look like any other installed gem."
- rake install:local
+ rake install
if (-not $?) {
Write-Warning " -- That didn't work. Let's try again."
- rake install:local
+ rake install
if (-not $?) { throw "unable to install the gems that live in directories within this repo" }
}
} finally {