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-26 12:59:47 +0530
commitb47d83ba4753f52a8d56e8695275f5f49a1b6a10 (patch)
treee2d6474a4d7f74d56036971656aaf034dd3101aa
parent974080b4d0c8e9a61a23e904988c5c0bf65a8d7d (diff)
downloadchef-b47d83ba4753f52a8d56e8695275f5f49a1b6a10.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 {