You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/10/22 20:56:35 UTC

[arrow] branch master updated: MINOR: [Release] Add seccomp=undefined to APT verification (#14477)

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

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 9471587811 MINOR: [Release] Add seccomp=undefined to APT verification (#14477)
9471587811 is described below

commit 94715878113d6c392348ef743cfdd355273cd651
Author: David Li <li...@gmail.com>
AuthorDate: Sat Oct 22 16:56:26 2022 -0400

    MINOR: [Release] Add seccomp=undefined to APT verification (#14477)
    
    Needed to avoid 'Failed to close file descriptor for child process'. The other Docker invocations already have it, but not this one.
    
    Authored-by: David Li <li...@gmail.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/release/verify-release-candidate.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index a9681af528..746fee9717 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -213,6 +213,7 @@ test_apt() {
         ;;
     esac
     if ! docker run --rm -v "${ARROW_DIR}":/arrow:delegated \
+           --security-opt="seccomp=unconfined" \
            "${target}" \
            /arrow/dev/release/verify-apt.sh \
            "${VERSION}" \