From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Fri, 4 Oct 2019 10:34:05 -0600 Subject: [U-Boot] [PATCH 2/3] gitlab-ci: Have buildman use /tmp for output In-Reply-To: <20191004161254.22362-2-trini@konsulko.com> References: <20191004161254.22362-1-trini@konsulko.com> <20191004161254.22362-2-trini@konsulko.com> Message-ID: <5325503d-6f2f-c759-e8f7-456fb7cc2e19@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 10/4/19 10:12 AM, Tom Rini wrote: > When running as another user we might not be able to use '..' for > certain directories and this is the default for buildman. Specify an > output directory instead. What if multiple invocations run in parallel on the same machine? They'll use the same path and collide. What about using mkdtemp() or similar?