Skip to content

Commit

Permalink
adjust regex and use --rm for docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
labuzm committed Aug 8, 2020
1 parent d557e86 commit f667faa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/wheel_builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ python -c 'import versioneer; versioneer.write_to_version_file("_build_version.p

for PY_VERSION in ${TARGETS}
do
sudo docker run -i -t -v `pwd`:/host "${DOCKER_IMAGE}" \
sudo docker run --rm -it -v `pwd`:/host "${DOCKER_IMAGE}" \
/bin/bash /host/scripts/docker_wheel_builder.sh ${PY_VERSION}
done

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


def _filter_cmake_manifest(cmake_manifest):
pattern = r'^_skbuild/.+(/src/kaa/.+)|(/bin/shaderc)$'
pattern = r'^_skbuild/.+(?:(/src/kaa/.+)|(/bin/shaderc))$'
return [
path for path in cmake_manifest
if re.match(pattern, path)
Expand Down

0 comments on commit f667faa

Please sign in to comment.