From b29dd4702caeb07b1852ad1e1e4040c5440eb266 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Fri, 1 Sep 2023 09:30:38 -0700 Subject: [PATCH] Citadel: build remaining Ventura bottles (#2378) * update bottle. Signed-off-by: Steve Peters Co-authored-by: OSRF Build Bot --- Formula/ignition-citadel.rb | 2 ++ Formula/ignition-gazebo3.rb | 2 ++ Formula/ignition-launch2.rb | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Formula/ignition-citadel.rb b/Formula/ignition-citadel.rb index 06443dcd4..6509ea283 100644 --- a/Formula/ignition-citadel.rb +++ b/Formula/ignition-citadel.rb @@ -13,6 +13,7 @@ class IgnitionCitadel < Formula bottle do root_url "https://osrf-distributions.s3.amazonaws.com/bottles-simulation" + sha256 cellar: :any, ventura: "9d36689233cee3bb6016793002ab5fa0574a986d3787ef46c8c2d6c76d7b53a7" sha256 cellar: :any, monterey: "39c496abc944d0ecf30f10489095d0beafa7cb794e4f88d2436c2c4fccd00deb" sha256 cellar: :any, big_sur: "dfc3b855fc80378130a975dc3a05783ed5efd4e1e8a89a14cbec9d970182e544" end @@ -51,6 +52,7 @@ def install system "make", "install" end + # install vcstool so it can be used in the test venv = virtualenv_create(libexec, Formula["python@3.11"].opt_libexec/"bin/python") %w[PyYAML vcstool].each do |pkg| venv.pip_install pkg diff --git a/Formula/ignition-gazebo3.rb b/Formula/ignition-gazebo3.rb index e6b92b427..da1b74945 100644 --- a/Formula/ignition-gazebo3.rb +++ b/Formula/ignition-gazebo3.rb @@ -10,6 +10,7 @@ class IgnitionGazebo3 < Formula bottle do root_url "https://osrf-distributions.s3.amazonaws.com/bottles-simulation" + sha256 ventura: "8d9a4f7e8268322e00427b6111927c0ab8a87df8205b6647d4c33f71c7a8e6a0" sha256 monterey: "eb3ac3b71e6d1fd411862a73a5ab544f03cb78de5a15e9cec2d27c2e7eceb0b3" sha256 big_sur: "63d61c5255395ecbdbd30b4960ffc9a0f5326e2a53accff7e6e92520ed66faf2" end @@ -50,6 +51,7 @@ def install cmake_args << "-DBUILD_TESTING=OFF" cmake_args << "-DCMAKE_INSTALL_RPATH=#{rpath}" + # Use build folder mkdir "build" do system "cmake", "..", *cmake_args system "make", "install" diff --git a/Formula/ignition-launch2.rb b/Formula/ignition-launch2.rb index 18fe0ebb1..b527d183a 100644 --- a/Formula/ignition-launch2.rb +++ b/Formula/ignition-launch2.rb @@ -10,6 +10,7 @@ class IgnitionLaunch2 < Formula bottle do root_url "https://osrf-distributions.s3.amazonaws.com/bottles-simulation" + sha256 ventura: "6453289a1875d0ae1c0c198332af439de2edb7188b36c149f2f79c305d5c1fc9" sha256 monterey: "ef282a967162e73efc83c7700ce7f0ae15951a3a7ae800b2c81e3771490bb77c" sha256 big_sur: "2518981af53f198a85273f435e33f8b46fdcf66be250ba8cd3077030a9ed283f" end @@ -36,6 +37,7 @@ def install cmake_args << "-DBUILD_TESTING=OFF" cmake_args << "-DCMAKE_INSTALL_RPATH=#{rpath}" + # Use build folder mkdir "build" do system "cmake", "..", *cmake_args system "make", "install"