File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 77
88include pyproject.toml
99include *.md
10+ include test/*.sh
1011recursive-include benchexec/tablegenerator/react-table/build *.min.js
1112recursive-include benchexec/tablegenerator/react-table/build *.min.css
1213recursive-include bin *
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export PYBUILD_NAME=benchexec
1717# Our tests need some additional files in {build_dir} to execute succesfully
1818export PYBUILD_BEFORE_TEST =cp -r {dir}/bin {dir}/doc {build_dir}/
1919export PYBUILD_AFTER_TEST =rm -r {build_dir}/bin {build_dir}/doc
20+ export PYBUILD_TEST_ARGS =""
2021
2122% :
2223 dh $@ --with python3 --buildsystem=pybuild
Original file line number Diff line number Diff line change @@ -103,7 +103,10 @@ cd "BenchExec-$VERSION"
103103dh_make -p " benchexec_$VERSION " --createorig -f " ../$TAR " -i -c apache || true
104104
105105dpkg-buildpackage --build=source -sa " --sign-key=$DEBKEY "
106- podman run --rm -w " $( pwd) " -v " $TEMP_DEB :$TEMP_DEB :rw" ubuntu:20.04 bash -c '
106+ podman run --security-opt unmask=/sys/fs/cgroup --cgroups=split \
107+ --security-opt unmask=/proc/* --security-opt seccomp=unconfined --device /dev/fuse \
108+ --rm -w " $( pwd) " -v " $TEMP_DEB :$TEMP_DEB :rw" --rm ubuntu:20.04 \
109+ " $TEMP_DEB /BenchExec-$VERSION /test/setup_cgroupsv2_in_container.sh" bash -c '
107110 apt-get update
108111 apt-get install -y --no-install-recommends dpkg-dev
109112 TZ=UTC DEBIAN_FRONTEND=noninteractive apt-get install -y $(dpkg-checkbuilddeps 2>&1 | grep -o "Unmet build dependencies:.*" | cut -d: -f2- | sed "s/([^)]*)//g")
You can’t perform that action at this time.
0 commit comments