Skip to content

Commit 1b8dcd9

Browse files
committed
build chef-powershell shim against to base 2025
Signed-off-by: muthuja <[email protected]>
1 parent d3fc60e commit 1b8dcd9

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

.expeditor/build_gems.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ $env:MSBuildEnableWorkloadResolver = "false"
2424

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

3131
Write-Output "--- :screwdriver: Installing Habitat via Choco"
@@ -74,7 +74,7 @@ Write-Output "`r"
7474

7575

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

.expeditor/manual_gem_release.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ else {
7878
Write-Output "`r"
7979

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

.expeditor/test_plan.ps1

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ param (
66
)
77

88
$env:HAB_LICENSE = "accept-no-persist"
9-
$env:HAB_ORIGIN = 'ci'
10-
$env:HAB_BLDR_CHANNEL = 'LTS-2024'
11-
$env:HAB_REFRESH_CHANNEL = 'LTS-2024'
9+
$env:HAB_BLDR_CHANNEL = 'base-2025'
10+
$env:HAB_REFRESH_CHANNEL = 'base-2025'
1211

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

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

16+
# Set HAB_ORIGIN after Habitat installation
17+
Write-Host "HAB_ORIGIN set to 'ci' after installation."
18+
$env:HAB_ORIGIN = 'ci'
19+
1720
if (Test-Path -PathType leaf "/hab/cache/keys/ci-*.sig.key") {
1821
Write-Host "--- :key: Using existing fake '$env:HAB_ORIGIN' origin key"
1922
} else {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Then set these envuironment variables:
1616

1717
```
1818
$env:MSBuildEnableWorkloadResolver = "false";
19-
$env:HAB_BLDR_CHANNEL = "LTS-2024";
19+
$env:HAB_BLDR_CHANNEL = "base-2025";
2020
$env:MSBuildSdksPath = "C:\Program Files\dotnet\sdk";
2121
$env:HAB_ORIGIN = "chef";
2222
```

habitat/plan.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$env:HAB_BLDR_CHANNEL = "LTS-2024"
1+
$env:HAB_BLDR_CHANNEL = "base-2025"
22
$env:MSBuildEnableWorkloadResolver = $false
33
$pkg_name="chef-powershell-shim"
44
$pkg_origin="chef"

0 commit comments

Comments
 (0)