Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .expeditor/build_gems.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ $env:MSBuildEnableWorkloadResolver = "false"

# setting the channel in this way gets access to the LTS channel and falls back to stable if the plan doesn't live there.
Write-Output "--- :shovel: Setting the BLDR and REFRESH Channels to LTS"
$env:HAB_BLDR_CHANNEL="LTS-2024"
$env:HAB_REFRESH_CHANNEL = "LTS-2024"
$env:HAB_BLDR_CHANNEL="base-2025"
$env:HAB_REFRESH_CHANNEL = "base-2025"
Write-Output "`r"

Write-Output "--- :screwdriver: Installing Habitat via Choco"
Expand Down Expand Up @@ -74,7 +74,7 @@ Write-Output "`r"


Write-Output "--- :construction: Building 64-bit PowerShell DLLs"
hab pkg build Habitat --refresh-channel LTS-2024
hab pkg build Habitat --refresh-channel base-2025
if (-not $?) { throw "unable to build"}
Write-Output "`r"

Expand Down
2 changes: 1 addition & 1 deletion .expeditor/manual_gem_release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ else {
Write-Output "`r"

Write-Output "--- :construction: Building 64-bit PowerShell DLL's"
hab pkg build Habitat --refresh-channel LTS-2024
hab pkg build Habitat --refresh-channel base-2025
if (-not $?) { throw "unable to build" }
Write-Output "`r"

Expand Down
9 changes: 6 additions & 3 deletions .expeditor/test_plan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ param (
)

$env:HAB_LICENSE = "accept-no-persist"
$env:HAB_ORIGIN = 'ci'
$env:HAB_BLDR_CHANNEL = 'LTS-2024'
$env:HAB_REFRESH_CHANNEL = 'LTS-2024'
$env:HAB_BLDR_CHANNEL = 'base-2025'
$env:HAB_REFRESH_CHANNEL = 'base-2025'

Write-Host "--- :8ball: :windows: Verifying $Plan"

Write-Host "Using Habitat version $(hab --version)"

# Set HAB_ORIGIN after Habitat installation
Write-Host "HAB_ORIGIN set to 'ci' after installation."
$env:HAB_ORIGIN = 'ci'

if (Test-Path -PathType leaf "/hab/cache/keys/ci-*.sig.key") {
Write-Host "--- :key: Using existing fake '$env:HAB_ORIGIN' origin key"
} else {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Then set these envuironment variables:

```
$env:MSBuildEnableWorkloadResolver = "false";
$env:HAB_BLDR_CHANNEL = "LTS-2024";
$env:HAB_BLDR_CHANNEL = "base-2025";
$env:MSBuildSdksPath = "C:\Program Files\dotnet\sdk";
$env:HAB_ORIGIN = "chef";
```
Expand Down
2 changes: 1 addition & 1 deletion habitat/plan.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$env:HAB_BLDR_CHANNEL = "LTS-2024"
$env:HAB_BLDR_CHANNEL = "base-2025"
$env:MSBuildEnableWorkloadResolver = $false
$pkg_name="chef-powershell-shim"
$pkg_origin="chef"
Expand Down