Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH luajit] ci: unused gcc removed from macOS setup
@ 2026-08-07 23:00 Evgeniy Temirgaleev via Tarantool-patches
  2026-08-17 12:32 ` Sergey Kaplun via Tarantool-patches
  0 siblings, 1 reply; 3+ messages in thread
From: Evgeniy Temirgaleev via Tarantool-patches @ 2026-08-07 23:00 UTC (permalink / raw)
  To: Sergey Kaplun, Sergey Bronnikov; +Cc: tarantool-patches

From: Temir Galeev <temir.galeev@bk.ru>

The brew gcc installation is useless, because cmake use
the clang compiler which is already present in the system.

Also, the clang is better than gcc for macOS.

Branch: https://github.com/tarantool/luajit/tree/tmr_g/lj-noticket-ci-build-mac

---
 .github/actions/setup-macos/action.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/actions/setup-macos/action.yml b/.github/actions/setup-macos/action.yml
index 91632648..9e752a70 100644
--- a/.github/actions/setup-macos/action.yml
+++ b/.github/actions/setup-macos/action.yml
@@ -32,6 +32,9 @@ runs:
         # Try to install the packages either upgrade it to avoid
         # of fails if the package already exists with the previous
         # version.
-        brew install --force cmake gcc make ninja perl ||
-          brew upgrade cmake gcc make ninja perl
+        # We skip gcc installation because the 'builtin' clang compiler
+        # is already present in the system. It is used by cmake
+        # by default even if gcc is installed.
+        brew install --force cmake make ninja perl ||
+          brew upgrade cmake make ninja perl
       shell: bash
-- 
2.49.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Tarantool-patches] [PATCH luajit] ci: unused gcc removed from macOS setup
  2026-08-07 23:00 [Tarantool-patches] [PATCH luajit] ci: unused gcc removed from macOS setup Evgeniy Temirgaleev via Tarantool-patches
@ 2026-08-17 12:32 ` Sergey Kaplun via Tarantool-patches
  2026-08-18 18:57   ` Evgeniy Temirgaleev via Tarantool-patches
  0 siblings, 1 reply; 3+ messages in thread
From: Sergey Kaplun via Tarantool-patches @ 2026-08-17 12:32 UTC (permalink / raw)
  To: Evgeniy Temirgaleev; +Cc: tarantool-patches

Hi, Evgeniy!
Thanks for the patch!
LGTM, with minor nits regarding the commit message.

On 08.08.26, Evgeniy Temirgaleev wrote:
> From: Temir Galeev <temir.galeev@bk.ru>
> 
> The brew gcc installation is useless, because cmake use

Typo: s/use/uses/

> the clang compiler which is already present in the system.

Typo: s/compiler/compiler,/

> 
> Also, the clang is better than gcc for macOS.
> 
> Branch: https://github.com/tarantool/luajit/tree/tmr_g/lj-noticket-ci-build-mac

Side note: It's better to insert the additional info under --- below to
avoid confusion with the commit message.

> 
> ---
>  .github/actions/setup-macos/action.yml | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/.github/actions/setup-macos/action.yml b/.github/actions/setup-macos/action.yml
> index 91632648..9e752a70 100644
> --- a/.github/actions/setup-macos/action.yml
> +++ b/.github/actions/setup-macos/action.yml

<snipped>

> 

-- 
Best regards,
Sergey Kaplun

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Tarantool-patches]  [PATCH luajit] ci: unused gcc removed from macOS setup
  2026-08-17 12:32 ` Sergey Kaplun via Tarantool-patches
@ 2026-08-18 18:57   ` Evgeniy Temirgaleev via Tarantool-patches
  0 siblings, 0 replies; 3+ messages in thread
From: Evgeniy Temirgaleev via Tarantool-patches @ 2026-08-18 18:57 UTC (permalink / raw)
  To: Sergey Kaplun; +Cc: tarantool-patches

[-- Attachment #1: Type: text/plain, Size: 1522 bytes --]

Hi, Sergey!
Thanks for review!
Fixed issues and force pushed the branch.

> 
> From: Sergey Kaplun <skaplun@tarantool.org>
> To: Evgeniy Temirgaleev <e.temirgaleev@tarantool.org>
> Cc: Sergey Bronnikov <sergeyb@tarantool.org>, tarantool-patches@dev.tarantool.org
> 
> Date: Monday, August 17, 2026 3:32 PM +03:00
> Hi, Evgeniy!
> Thanks for the patch!
> LGTM, with minor nits regarding the commit message.
> 
> On 08.08.26, Evgeniy Temirgaleev wrote:
> > From: Temir Galeev <temir.galeev@bk.ru>
> >
> > The brew gcc installation is useless, because cmake use
> 
> Typo: s/use/uses/
> 

fixed

> 
> 
> > the clang compiler which is already present in the system.
> 
> Typo: s/compiler/compiler,/
> 

fixed

> 
> 
> >
> > Also, the clang is better than gcc for macOS.
> >
> > Branch: https://github.com/tarantool/luajit/tree/tmr_g/lj-noticket-ci-build-mac
> 
> 
> Side note: It's better to insert the additional info under --- below to
> avoid confusion with the commit message.
> 

Thanks! But here the note about clang is a part of the commit message.

> 
> 
> >
> > ---
> > .github/actions/setup-macos/action.yml | 7 +++++--
> > 1 file changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/.github/actions/setup-macos/action.yml
> b/.github/actions/setup-macos/action.yml
> > index 91632648..9e752a70 100644
> > --- a/.github/actions/setup-macos/action.yml
> > +++ b/.github/actions/setup-macos/action.yml
> 
> <snipped>
> 
> >
> 
> --
> Best regards,
> Sergey Kaplun
> 

--
Best regards,
Evgeniy Temirgaleev

[-- Attachment #2: Type: text/html, Size: 3415 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-18 18:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-07 23:00 [Tarantool-patches] [PATCH luajit] ci: unused gcc removed from macOS setup Evgeniy Temirgaleev via Tarantool-patches
2026-08-17 12:32 ` Sergey Kaplun via Tarantool-patches
2026-08-18 18:57   ` Evgeniy Temirgaleev via Tarantool-patches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox