diff options
author | Marc A. Paradise <marc.paradise@gmail.com> | 2022-09-22 17:30:57 -0400 |
---|---|---|
committer | Marc A. Paradise <marc.paradise@gmail.com> | 2022-09-28 11:21:29 -0400 |
commit | 223f0a5ce02b0add67afd44cbc8356b9ca49925d (patch) | |
tree | 98fce365f0955b78a4d651820188ebb7fc291532 /omnibus/omnibus.rb | |
parent | f0b21e1a7b96a9b4600a65c6a7d44ad90f04f824 (diff) | |
download | chef-mp/platform-verification-output.tar.gz |
Add OS version/name output to omnibus-pipelinemp/platform-verification-output
This allows us to verify that we are running the OS/version we think we
are in our omnibus build and test pipelines - as we have found that
every once in a while, these things do not match.
Signed-off-by: Marc A. Paradise <marc.paradise@gmail.com>
Diffstat (limited to 'omnibus/omnibus.rb')
-rw-r--r-- | omnibus/omnibus.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/omnibus/omnibus.rb b/omnibus/omnibus.rb index 99817f7caf..f28f9c9593 100644 --- a/omnibus/omnibus.rb +++ b/omnibus/omnibus.rb @@ -31,6 +31,9 @@ env_omnibus_windows_arch = :x86 unless %w{x86 x64}.include?(env_omnibus_windows_ windows_arch env_omnibus_windows_arch +# Allows us to verify that we're building on the platform we think we are. +puts "RUBY PLATFORM @ omnibus-load time: #{RUBY_PLATFORM}" + use_git_caching true # Enable S3 asset caching |