<HTML><BODY><div>LGTM</div><div> </div><div> </div><div data-signature-widget="container"><div data-signature-widget="content"><div>--<br>Evgeniy Temirgaleev<br>Отправлено из Почты <a href="https://trk.mail.ru/c/zzm979">Mail</a></div></div></div><div> </div><div> </div><blockquote style="border-left:1px solid #0857A6;margin:10px;padding:0 0 0 10px">От кого: Sergey Kaplun <skaplun@tarantool.org><br>Кому: Sergey Bronnikov <sergeyb@tarantool.org>, Evgeniy Temirgaleev <e.temirgaleev@tarantool.org><br>Копия: tarantool-patches@dev.tarantool.org, Sergey Kaplun <skaplun@tarantool.org><br>Дата: Четверг, 23 апреля 2026, 20:09 +03:00<br> <div id=""><div class="js-helper js-readmsg-msg"><div><div id="style_17769641501970820345_BODY">We have encountered the flakiness of the network on our CI runners. It<br>happens only on lua-cjson installation and only in some particular job<br>run.<br><br>This patch helps to deal with it by installing this package only if it<br>is not installed in the system. Also, it installs it only for Lua 5.1,<br>which is compatible with LuaJIT.<br>---<br><br>Branch: <a href="https://github.com/tarantool/luajit/tree/skaplun/ci-perf-install-conditionally-lua-cjson">https://github.com/tarantool/luajit/tree/skaplun/ci-perf-install-conditionally-lua-cjson</a><br><br> .github/actions/setup-performance/action.yml | 4 +++-<br> 1 file changed, 3 insertions(+), 1 deletion(-)<br><br>diff --git a/.github/actions/setup-performance/action.yml b/.github/actions/setup-performance/action.yml<br>index 4e0e1929..3c2a8230 100644<br>--- a/.github/actions/setup-performance/action.yml<br>+++ b/.github/actions/setup-performance/action.yml<br>@@ -11,7 +11,9 @@ runs:<br>         apt install -y curl luarocks util-linux<br>       shell: bash<br>     - name: Install Lua modules<br>- run: luarocks install lua-cjson<br>+ run: ><br>+ luarocks --lua-version=5.1 show lua-cjson ||<br>+ luarocks --lua-version=5.1 install lua-cjson<br>       shell: bash<br>     - name: Run script to setup Linux environment<br>       run: sh ./perf/helpers/setup_env.sh<br>--<br>2.53.0</div></div></div></div></blockquote><div> </div></BODY></HTML>