You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by no...@apache.org on 2020/12/29 12:22:36 UTC

[buildstream] branch tristan/debug-bwrap created (now fd7e04f)

This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a change to branch tristan/debug-bwrap
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


      at fd7e04f  Trying with -s

This branch includes the following new commits:

     new e007e45  .gitlab-ci.yml: Add bwrap version to diagnostics
     new ce665ff  _platform/linux.py: Info message displaying which bwrap features are enabled.
     new 639707c  .gitlab-ci.yml: Added bwrap --help
     new fd7e04f  Trying with -s

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[buildstream] 01/04: .gitlab-ci.yml: Add bwrap version to diagnostics

Posted by no...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a commit to branch tristan/debug-bwrap
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit e007e45be906325fe1aea8d3b449dcec9011eab5
Author: Tristan Van Berkom <tr...@codethink.co.uk>
AuthorDate: Thu May 10 15:52:14 2018 +0900

    .gitlab-ci.yml: Add bwrap version to diagnostics
---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0ba4a1c..df1db0c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -65,6 +65,7 @@ source_dist:
   # Diagnostics
   - mount
   - df -h
+  - bwrap --version
 
   - useradd -Um buildstream
   - chown -R buildstream:buildstream .


[buildstream] 02/04: _platform/linux.py: Info message displaying which bwrap features are enabled.

Posted by no...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a commit to branch tristan/debug-bwrap
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit ce665ff6d1e713886cfb3b1e63e4f61190183b0e
Author: Tristan Van Berkom <tr...@codethink.co.uk>
AuthorDate: Thu May 10 15:59:03 2018 +0900

    _platform/linux.py: Info message displaying which bwrap features are enabled.
---
 buildstream/_platform/linux.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/buildstream/_platform/linux.py b/buildstream/_platform/linux.py
index 26dafb9..7c49b4e 100644
--- a/buildstream/_platform/linux.py
+++ b/buildstream/_platform/linux.py
@@ -39,6 +39,12 @@ class Linux(Platform):
         self._user_ns_available = self._check_user_ns_available(context)
         self._artifact_cache = OSTreeCache(context, enable_push=self._user_ns_available)
 
+        context.message(
+            Message(None, MessageType.INFO,
+                    "Linux platform initialized",
+                    detail="die with parent available: {}\n".format(self._die_with_parent_available) +
+                    "user namespaces available: {}".format(self._user_ns_available)))
+
     @property
     def artifactcache(self):
         return self._artifact_cache


[buildstream] 03/04: .gitlab-ci.yml: Added bwrap --help

Posted by no...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a commit to branch tristan/debug-bwrap
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 639707c4fba218889809477c16f73e2047e7cbd5
Author: Tristan Van Berkom <tr...@codethink.co.uk>
AuthorDate: Thu May 10 16:53:34 2018 +0900

    .gitlab-ci.yml: Added bwrap --help
---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index df1db0c..155bdfe 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -66,6 +66,7 @@ source_dist:
   - mount
   - df -h
   - bwrap --version
+  - bwrap --help
 
   - useradd -Um buildstream
   - chown -R buildstream:buildstream .


[buildstream] 04/04: Trying with -s

Posted by no...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a commit to branch tristan/debug-bwrap
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit fd7e04fa554337467483a37e1c384b33add772b6
Author: Tristan Van Berkom <tr...@codethink.co.uk>
AuthorDate: Thu May 10 17:44:18 2018 +0900

    Trying with -s
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 155bdfe..0d2cb0f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -60,7 +60,7 @@ source_dist:
 .linux-tests-template: &linux-tests
   stage: test
   variables:
-    PYTEST_ADDOPTS: "--color=yes"
+    PYTEST_ADDOPTS: "--color=yes -s"
   script:
   # Diagnostics
   - mount