From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id AA73922BAF for ; Wed, 24 Jul 2019 17:40:28 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CN4diYKziM9h for ; Wed, 24 Jul 2019 17:40:28 -0400 (EDT) Received: from smtp45.i.mail.ru (smtp45.i.mail.ru [94.100.177.105]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 6972622B4B for ; Wed, 24 Jul 2019 17:40:28 -0400 (EDT) Date: Thu, 25 Jul 2019 00:40:11 +0300 From: Alexander Turenko Subject: [tarantool-patches] Re: [PATCH v1] travis-ci: fix OSX max files limits Message-ID: <20190724214010.zysu3ak7e5p3fe4n@tkn_work_nb> References: <34290551efba4c2287e6ffdaea5caf6aea7539b5.1563868186.git.avtikhon@tarantool.org> <20190724093347.3rsffrsnzyr5zsts@tkn_work_nb> <1563995566.727319504@f118.i.mail.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1563995566.727319504@f118.i.mail.ru> Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: Alexander Tikhonov Cc: tarantool-patches@freelists.org > >On Tue, Jul 23, 2019 at 10:51:09AM +0300, Alexander V. Tikhonov wrote: > >> Increased the maximum number of open file descriptors on macOS: > >> Travis-ci needed the "ulimit -n " call > >> Gitlab-ci needed the "launchctl limit maxfiles " call > >> Also gitlib-ci needed the password to change the limits, while > >> travis-ci run under root user. Limit setup set in the same > >> call as tests runs call. > > > >Are you know what is a reason of the difference between travis-ci and > >gitlab-ci? I don't insist, but if it is known, it worth to mention it. > Right, there is the difference that we use different images, travis-ci uses > its own image, while gitlab-ci we provided the needed image manually. > Also the travis-ci runs under root user, while gitlab-ci we know the root > password and can run sudo command with the password. So I've added > more comments into commit log about it. I think it is better to implement non-password sudo in our images and use it in the same way for both testing pipelines. However if it is complex thing, okay, let it be.