Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cbi-dev] Starting sibling containers
  • From: Julien Enoch <julien.enoch@xxxxxxxxxxxxxx>
  • Date: Tue, 28 Apr 2020 16:42:20 +0000
  • Accept-language: fr-FR, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=adlinktech.com; dmarc=pass action=none header.from=adlinktech.com; dkim=pass header.d=adlinktech.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=0QhrdU30B+35hmOFTXGqIAOjMguTGpQZfTQ9ePj3t00=; b=jIXwEYdmjzcVFoQTV1v/LHmJmjQkgkbpZKNxLK78MTp7HZIMI3R9//P0qGD4k3gd1vcEDqor1l/5TLiE4oslyb6zzi0TMAj3HMR6jMNJFFWXPwGdWPwPNtp6wmXKiwbTShULqkR2k5prTCpABfMLoMVB2OxpHLQJsSFL4D4nJEyiVupA98db7u/ZjqhfeoWiWKefB2jAEkTcir8Vz1x/Swq8PDx6h/wNlIpmZbBoM2Cb/VIJXTUgf6N1cIxdYEcW/k3WWHeN3DuumWi7udExdAZeIna4JPsDAUVCm9fY8M/CanmYk3JOSHvKYxuu61FIr11u0rlssAOGWbJ/cYxYhA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=QfVPMNsxeyVIO0FaFTQ2JWtu4pvCfws7FHl8hC9/h5QhTlJlwXGuI/gyNPTaTme/ibf+i1Ti15DUsSjitUw5nC1pQdqGycKIlwSJjFAFCX9xLiSMRKwngsfWlnJRHFyyOH0ctGbnSmYEluCWZwD60yOuGHs3Nm2LjJyHZUgCsBK7VUB+F8/D0nKOlbdB9F57yDUVUu2BbEbtmitknMzMJ0wZyhsHQkrWIhr8LeoDVnVagB8QKketL867BX6s9ahSR9qSJwKSxjLn7mlQIYZ9/lg4F2rpHoG/X9/6BbRUm+GFCHXyOVODxt6FOsLsXj6C1Ll3JNezKY2KHExZuJQPhQ==
  • Delivered-to: cbi-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/cbi-dev>
  • List-help: <mailto:cbi-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/cbi-dev>, <mailto:cbi-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/cbi-dev>, <mailto:cbi-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHWHXv8+8OyooPAFku66RPNPgey2A==
  • Thread-topic: Starting sibling containers

Hi,

In the Eclipse zenoh project we need to perform some cross-platforms builds.
To achieve this, I already implemented a CMake/Make based builds that relies on various docker images (multiarch/crossbuild, dockcross/manylinux2010-x86…).

Now, I’m trying to run this build on CBI using a Kubernetes pod and a custom container with cmake/make and docker installed.
My intent was to follow the solution from [1]: mount "/var/run/docker.sock" so the container can pull/start other images.

I tried this in this Jenkinsfile: [2]
However, the build was stuck for a while ([3]), let me thinking something went wrong, possibly because of permission error.

My question:
Is it possible for a build in CBI to pull/start Docker containers on the fly, and if yes, how ?

Thanks for any help,
Julien 



Back to the top