From ad5643bba1c423c19970bf0afca93b91103e7a82 Mon Sep 17 00:00:00 2001 From: Amit Karsale Date: Tue, 28 Nov 2023 16:34:27 +0530 Subject: [PATCH] (PA-5902) Enable puppet-runtime builds for macOS 14(ARM) --- configs/platforms/osx-14-arm64.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 configs/platforms/osx-14-arm64.rb diff --git a/configs/platforms/osx-14-arm64.rb b/configs/platforms/osx-14-arm64.rb new file mode 100644 index 000000000..5706d641d --- /dev/null +++ b/configs/platforms/osx-14-arm64.rb @@ -0,0 +1,8 @@ +platform 'osx-14-arm64' do |plat| + plat.inherit_from_default + + packages = %w[automake cmake pkg-config yaml-cpp] + plat.provision_with "su test -c '/opt/homebrew/bin/brew install #{packages.join(' ')}'" + + plat.output_dir File.join('apple', '14', 'PC1', 'arm64') +end