From 7d26747afd2e713efe7a8c67ed8e1187947cbeb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20A=CC=81lvaro?= Date: Tue, 23 Apr 2024 09:01:56 +0200 Subject: [PATCH] catboost-cli(formula): 1.2.5 --- Formula/catboost-cli.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Formula/catboost-cli.rb b/Formula/catboost-cli.rb index ef0738f..9b55176 100644 --- a/Formula/catboost-cli.rb +++ b/Formula/catboost-cli.rb @@ -2,8 +2,8 @@ class CatboostCli < Formula desc "Fast, scalable, high performance Gradient Boosting on Decision Trees cli tool" homepage "https://catboost.ai" url "https://github.com/catboost/catboost.git", - tag: "v1.2.3", - revision: "fe0941b208f9c392ce788c314463b6816d335c6a" + tag: "v1.2.5", + revision: "2605fe627ed4271aa8a87ff3564fb68de5f116f0" license "Apache-2.0" head "https://github.com/catboost/catboost.git", branch: "master" @@ -28,6 +28,15 @@ class CatboostCli < Formula end def install + if ENV.key?("GITHUB_ACTIONS") + # Add current clang version to conan@1 + require "yaml" + conan_default_file = (buildpath/".."/".brew_home"/".conan"/"profiles"/"default").to_s + yaml = YAML.load_file(conan_default_file) + yaml&.settings&.compiler&.clang&.version&.<< Formula["llvm"].version.major.to_s + File.write(conan_default_file, YAML.dump(yaml)) + end + args = [ "-DCATBOOST_COMPONENTS=app", "-DHAVE_CUDA=NO",