Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating the Hab command to use a new switch #284

Merged
merged 3 commits into from
Jan 16, 2025
Merged
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
2 changes: 1 addition & 1 deletion .expeditor/build_gems.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Write-Output "`r"


Write-Output "--- :construction: Building 64-bit PowerShell DLLs"
hab pkg build Habitat
hab pkg build Habitat --refresh-channel LTS-2024
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
hab pkg build Habitat --refresh-channel LTS-2024
if (-not $?) { throw "unable to build" }
Write-Output "`r"

Expand Down
2 changes: 2 additions & 0 deletions .expeditor/test_plan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ param (

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

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

Expand Down
2 changes: 1 addition & 1 deletion .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ steps:
executor:
docker:
host_os: windows
image: rubydistros/windows-2019:3.0
image: rubydistros/windows-2019:3.1
shell: [ "powershell", "-Command" ]
2 changes: 1 addition & 1 deletion habitat-vs-2022-x64/plan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $pkg_upstream_url="https://visualstudio.microsoft.com/downloads/#build-tools-for
$pkg_license=@("Microsoft Software License")
$pkg_maintainer="The Habitat Maintainers <[email protected]>"
$pkg_source="https://aka.ms/vs/17/release/vs_BuildTools.exe"
$pkg_shasum="ab3cff3d3a8c48804f47eb521cf138480f5ed4fe86476dd449a420777d7f2ead"
$pkg_shasum="e44275c738c3b146c1acbf6fadd059ff9567ce97113cc584886cdc6985bfe538"
$pkg_build_deps=@("core/7zip")

$pkg_bin_dirs=@(
Expand Down
Loading