Skip to content

Commit

Permalink
added back the env var
Browse files Browse the repository at this point in the history
Signed-off-by: nikhil2611 <[email protected]>
  • Loading branch information
nikhil2611 committed Feb 1, 2025
1 parent 4cde999 commit ee797c4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .expeditor/build.habitat.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
---
env:
HAB_REFRESH_CHANNEL: "LTS-2024"

origin: chef

expeditor:
defaults:
buildkite:
env:
HAB_STUDIO_SECRET_HAB_REFRESH_CHANNEL: "LTS-2024"
retry:
automatic:
limit: 1
1 change: 1 addition & 0 deletions .expeditor/buildkite/artifact.habitat.test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# TODO: Set-StrictMode -Version Latest
$PSDefaultParameterValues['*:ErrorAction']='Stop'
$ErrorActionPreference = 'Stop'
$env:HAB_REFRESH_CHANNEL = "LTS-2024"
$env:HAB_ORIGIN = 'ci'
$env:CHEF_LICENSE = 'accept-no-persist'
$env:HAB_LICENSE = 'accept-no-persist'
Expand Down
1 change: 1 addition & 0 deletions .expeditor/buildkite/artifact.habitat.test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export HAB_ORIGIN='ci'
export PLAN='berkshelf'
export CHEF_LICENSE="accept-no-persist"
export HAB_LICENSE="accept-no-persist"
export HAB_REFRESH_CHANNEL="LTS-2024"

echo "--- checking if git is installed"
if ! command -v git &> /dev/null; then
Expand Down
2 changes: 1 addition & 1 deletion .expeditor/habitat-test.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ expeditor:
buildkite:
timeout_in_minutes: 30
env:
HAB_REFRESH_CHANNEL: "LTS-2024"
HAB_STUDIO_SECRET_HAB_REFRESH_CHANNEL: "LTS-2024"
retry:
automatic:
limit: 1
Expand Down
1 change: 1 addition & 0 deletions habitat/plan.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
$ErrorActionPreference = "Stop"
$PSDefaultParameterValues['*:ErrorAction']='Stop'

$env:HAB_REFRESH_CHANNEL = "LTS-2024"
$pkg_name="berkshelf"
$pkg_origin="chef"
$pkg_version=$(Get-Content "$PLAN_CONTEXT/../VERSION")
Expand Down
1 change: 1 addition & 0 deletions habitat/plan.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export HAB_REFRESH_CHANNEL="LTS-2024"
pkg_name="berkshelf"
pkg_origin="chef"
ruby_pkg="core/ruby3_1"
Expand Down

0 comments on commit ee797c4

Please sign in to comment.