-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'workstation-LTS' of github.com:chef/chef-vault into ash…
…ique/test-hab-pipelines
- Loading branch information
Showing
9 changed files
with
439 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
origin: chef | ||
|
||
expeditor: | ||
defaults: | ||
buildkite: | ||
retry: | ||
automatic: | ||
limit: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
#!/usr/bin/env powershell | ||
|
||
#Requires -Version 5 | ||
# https://stackoverflow.com/questions/9948517 | ||
# TODO: Set-StrictMode -Version Latest | ||
$PSDefaultParameterValues['*:ErrorAction']='Stop' | ||
$ErrorActionPreference = 'Stop' | ||
$env:HAB_BLDR_CHANNEL = "LTS-2024" | ||
$env:HAB_ORIGIN = 'ci' | ||
$env:CHEF_LICENSE = 'accept-no-persist' | ||
$env:HAB_LICENSE = 'accept-no-persist' | ||
$Plan = 'chef-vault' | ||
|
||
Write-Host "--- system details" | ||
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture' | ||
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize | ||
|
||
Write-Host "--- Installing the version of Habitat required" | ||
|
||
function Stop-HabProcess { | ||
$habProcess = Get-Process hab -ErrorAction SilentlyContinue | ||
if ($habProcess) { | ||
Write-Host "Stopping hab process..." | ||
Stop-Process -Name hab -Force | ||
} | ||
} | ||
|
||
function Install-Habitat { | ||
Write-Host "Downloading and installing Habitat..." | ||
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/habitat-sh/habitat/main/components/hab/install.ps1')) | ||
} | ||
|
||
try { | ||
hab --version | ||
} | ||
catch { | ||
Set-ExecutionPolicy Bypass -Scope Process -Force | ||
|
||
Stop-HabProcess | ||
|
||
# Remove the existing hab.exe if it exists and if you have permissions | ||
$habPath = "C:\ProgramData\Habitat\hab.exe" | ||
if (Test-Path $habPath) { | ||
Write-Host "Attempting to remove existing hab.exe..." | ||
Remove-Item $habPath -Force -ErrorAction SilentlyContinue | ||
if (Test-Path $habPath) { | ||
Write-Host "Failed to remove hab.exe, re-running script with elevated permissions." | ||
Start-Process powershell -Verb runAs -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" | ||
exit | ||
} | ||
} | ||
|
||
Install-Habitat | ||
} | ||
finally { | ||
Write-Host ":habicat: I think I have the version I need to build." | ||
} | ||
|
||
|
||
Write-Host "--- Generating fake origin key" | ||
hab origin key generate $env:HAB_ORIGIN | ||
|
||
Write-Host "--- Building $Plan" | ||
$project_root = "$(git rev-parse --show-toplevel)" | ||
Set-Location $project_root | ||
|
||
$env:DO_CHECK=$true; hab pkg build . | ||
|
||
. $project_root/results/last_build.ps1 | ||
|
||
Write-Host "--- Installing $pkg_ident/$pkg_artifact" | ||
hab pkg install -b $project_root/results/$pkg_artifact | ||
|
||
Write-Host "+++ Testing $Plan" | ||
|
||
Push-Location $project_root | ||
|
||
try { | ||
Write-Host "Running unit tests..." | ||
hab pkg exec "${pkg_ident}" rake unit | ||
|
||
If ($lastexitcode -ne 0) { | ||
Write-Host "Rake unit tests failed!" -ForegroundColor Red | ||
Exit $lastexitcode | ||
} else { | ||
Write-Host "Rake unit tests passed!" -ForegroundColor Green | ||
} | ||
} | ||
finally { | ||
# Ensure we always return to the original directory | ||
Pop-Location | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eo pipefail | ||
|
||
export HAB_ORIGIN='ci' | ||
export PLAN='chef-vault' | ||
export CHEF_LICENSE="accept-no-persist" | ||
export HAB_LICENSE="accept-no-persist" | ||
export HAB_BLDR_CHANNEL="LTS-2024" | ||
|
||
echo "--- checking if git is installed" | ||
if ! command -v git &> /dev/null; then | ||
echo "Git is not installed. Installing Git..." | ||
sudo yum install -y git | ||
else | ||
echo "Git is already installed." | ||
git --version | ||
fi | ||
|
||
echo "--- add an exception for this directory since detected dubious ownership in repository at /workdir" | ||
git config --global --add safe.directory /workdir | ||
|
||
echo "--- git status for this workdir" | ||
git status | ||
|
||
echo "--- ruby version" | ||
ruby -v | ||
|
||
export project_root="$(git rev-parse --show-toplevel)" | ||
echo "The value for project_root is: $project_root" | ||
|
||
export HAB_NONINTERACTIVE=true | ||
export HAB_NOCOLORING=true | ||
export HAB_STUDIO_SECRET_HAB_NONINTERACTIVE=true | ||
|
||
echo "--- system details" | ||
uname -a | ||
|
||
echo "--- Installing Habitat" | ||
id -a | ||
curl https://raw.githubusercontent.com/habitat-sh/habitat/main/components/hab/install.sh | bash | ||
|
||
echo "--- :key: Generating fake origin key" | ||
hab origin key generate "$HAB_ORIGIN" | ||
|
||
|
||
echo "--- Building $PLAN" | ||
cd "$project_root" | ||
DO_CHECK=true hab pkg build . | ||
|
||
echo "--- Sourcing 'results/last_build.sh'" | ||
if [ -f ./results/last_build.env ]; then | ||
cat ./results/last_build.env | ||
. ./results/last_build.env | ||
export pkg_artifact | ||
fi | ||
|
||
echo "+++ Installing ${pkg_ident:?is undefined}" | ||
echo "++++" | ||
echo $project_root | ||
echo "+++" | ||
hab pkg install -b "${project_root:?is undefined}/results/${pkg_artifact:?is undefined}" | ||
|
||
echo "+++ Testing $PLAN" | ||
|
||
PATH="$(hab pkg path ci/chef-vault)/bin:$PATH" | ||
export PATH | ||
echo "PATH is $PATH" | ||
|
||
echo "--- :mag_right: Testing $PLAN" | ||
${project_root}/habitat/tests/test.sh "$pkg_ident" || error 'failures during test of executables' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
expeditor: | ||
defaults: | ||
buildkite: | ||
timeout_in_minutes: 30 | ||
retry: | ||
automatic: | ||
limit: 1 | ||
|
||
steps: | ||
|
||
- label: ":linux: Validate Habitat Builds of Test Kitchen" | ||
commands: | ||
- .expeditor/buildkite/artifact.habitat.test.sh | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:3.1 | ||
privileged: true | ||
|
||
- label: ":windows: Validate Habitat Builds of Test Kitchen" | ||
commands: | ||
- .expeditor/buildkite/artifact.habitat.test.ps1 | ||
expeditor: | ||
executor: | ||
docker: | ||
host_os: windows | ||
shell: ["powershell", "-Command"] | ||
image: rubydistros/windows-2019:3.1 | ||
user: 'NT AUTHORITY\SYSTEM' | ||
environment: | ||
- FORCE_FFI_YAJL=ext | ||
- EXPIRE_CACHE=true | ||
- CHEF_LICENSE=accept-no-persist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
$ErrorActionPreference = "Stop" | ||
$PSDefaultParameterValues['*:ErrorAction']='Stop' | ||
|
||
$env:HAB_BLDR_CHANNEL = "LTS-2024" | ||
$pkg_name="chef-vault" | ||
$pkg_origin="chef" | ||
$pkg_version=$(Get-Content "$PLAN_CONTEXT/../VERSION") | ||
$pkg_maintainer="The Chef Maintainers <[email protected]>" | ||
|
||
$pkg_deps=@( | ||
"chef/ruby31-plus-devkit" | ||
"core/git" | ||
) | ||
$pkg_bin_dirs=@("bin" | ||
"vendor/bin") | ||
$project_root= (Resolve-Path "$PLAN_CONTEXT/../").Path | ||
|
||
function pkg_version { | ||
Get-Content "$SRC_PATH/VERSION" | ||
} | ||
|
||
function Invoke-Before { | ||
Set-PkgVersion | ||
} | ||
function Invoke-SetupEnvironment { | ||
Push-RuntimeEnv -IsPath GEM_PATH "$pkg_prefix/vendor" | ||
|
||
Set-RuntimeEnv APPBUNDLER_ALLOW_RVM "true" # prevent appbundler from clearing out the carefully constructed runtime GEM_PATH | ||
Set-RuntimeEnv FORCE_FFI_YAJL "ext" | ||
Set-RuntimeEnv LANG "en_US.UTF-8" | ||
Set-RuntimeEnv LC_CTYPE "en_US.UTF-8" | ||
} | ||
|
||
function Invoke-Build { | ||
try { | ||
$env:Path += ";c:\\Program Files\\Git\\bin" | ||
Push-Location $project_root | ||
$env:GEM_HOME = "$HAB_CACHE_SRC_PATH/$pkg_dirname/vendor" | ||
|
||
Write-BuildLine " ** Configuring bundler for this build environment" | ||
bundle config --local without integration deploy maintenance | ||
bundle config --local jobs 4 | ||
bundle config --local retry 5 | ||
bundle config --local silence_root_warning 1 | ||
Write-BuildLine " ** Using bundler to retrieve the Ruby dependencies" | ||
bundle install | ||
|
||
gem build chef-vault.gemspec | ||
Write-BuildLine " ** Using gem to install" | ||
gem install chef-vault*.gem --no-document | ||
|
||
If ($lastexitcode -ne 0) { Exit $lastexitcode } | ||
} finally { | ||
Pop-Location | ||
} | ||
} | ||
|
||
function Invoke-Install { | ||
Write-BuildLine "** Copy built & cached gems to install directory" | ||
Copy-Item -Path "$HAB_CACHE_SRC_PATH/$pkg_dirname/*" -Destination $pkg_prefix -Recurse -Force -Exclude @("gem_make.out", "mkmf.log", "Makefile", | ||
"*/latest", "latest", | ||
"*/JSON-Schema-Test-Suite", "JSON-Schema-Test-Suite") | ||
|
||
try { | ||
Push-Location $pkg_prefix | ||
bundle config --local gemfile $project_root/Gemfile | ||
Write-BuildLine "** generating binstubs for chef-vault with precise version pins" | ||
Write-BuildLine "** generating binstubs for chef-vault with precise version pins $project_root $pkg_prefix/bin " | ||
Invoke-Expression -Command "appbundler.bat $project_root $pkg_prefix/bin chef-vault" | ||
If ($lastexitcode -ne 0) { Exit $lastexitcode } | ||
Write-BuildLine " ** Running the chef-vault project's 'rake install' to install the path-based gems so they look like any other installed gem." | ||
|
||
If ($lastexitcode -ne 0) { Exit $lastexitcode } | ||
} finally { | ||
Pop-Location | ||
} | ||
} | ||
|
||
function Invoke-After { | ||
# We don't need the cache of downloaded .gem files ... | ||
Remove-Item $pkg_prefix/vendor/cache -Recurse -Force | ||
# We don't need the gem docs. | ||
Remove-Item $pkg_prefix/vendor/doc -Recurse -Force | ||
# We don't need to ship the test suites for every gem dependency, | ||
# only inspec's for package verification. | ||
Get-ChildItem $pkg_prefix/vendor/gems -Filter "spec" -Directory -Recurse -Depth 1 ` | ||
| Where-Object -FilterScript { $_.FullName -notlike "*chef-vault*" } ` | ||
| Remove-Item -Recurse -Force | ||
# Remove the byproducts of compiling gems with extensions | ||
Get-ChildItem $pkg_prefix/vendor/gems -Include @("gem_make.out", "mkmf.log", "Makefile") -File -Recurse ` | ||
| Remove-Item -Force | ||
} |
Oops, something went wrong.