From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp29.i.mail.ru (smtp29.i.mail.ru [94.100.177.89]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 382D0445320 for ; Tue, 28 Jul 2020 18:09:18 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Tue, 28 Jul 2020 18:09:14 +0300 Message-Id: <5358833fffe09a551632732d6e63af36768647e3.1595947426.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v1] gitlab-ci: restore lto testing on OSX List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin , Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Found that after commit: 7faa1abe2b2dedd3a5d2971ddd7c5b9ce55c30b2 "gitlab-ci: implement OSX 10.14 testing on mac mini" the variable environment CMAKE_EXTRA_PARAMS, which turns on LTO flag on OSX compilation was mistakenly missed to be updated and LTO feature was disabled on OSX testing in real. After it later commit: a94a9b3fd629b5abbc99a23ba527cd91e5c6ebf5 "lua/log: add ability to configure logging early" added the missed LTO error, which was fixed at: 625095d95c5d1962c02c124fcba098e527f017fd "lua/log: add missing exports" Closes #5160 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-5160-restore-osx-lto Issue: https://github.com/tarantool/tarantool/issues/5160 .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 580825005..0ead08711 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -194,7 +194,7 @@ osx_15_release_lto: tags: - osx_15 variables: - EXTRA_ENV: 'export CMAKE_EXTRA_PARAMS=-DENABLE_LTO=ON ;' + CMAKE_EXTRA_PARAMS: -DENABLE_LTO=ON <<: *osx_definition freebsd_12_release: -- 2.17.1