From 469a5bd796708ca940dad2e0da81e66d1db7e6d8 Mon Sep 17 00:00:00 2001 From: Nikita Titov Date: Sun, 6 Oct 2024 14:28:49 +0300 Subject: [PATCH] Update setup.sh --- .ci/setup.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.ci/setup.sh b/.ci/setup.sh index 40ab0b5a68a..41bb63da5c3 100755 --- a/.ci/setup.sh +++ b/.ci/setup.sh @@ -2,12 +2,11 @@ set -e -E -u -o pipefail -brew install cmake gcc ninja +brew install cmake git clone --recursive https://github.com/microsoft/LightGBM cd LightGBM -export CXX=g++-14 CC=gcc-14 # replace "7" with version of gcc installed on your machine -cmake -B build -S . -G Ninja +cmake -B build -S . -DUSE_OPENMP=OFF cmake --build build -j4 ls