Remove some left over debug logging

We want good debug logging. But we had some things from having tried to
figure out why the wheels weren't building/caching. Remove those,
they're silly.

Change-Id: Ifb661a6474b01e461303248b891e45bbee32bfc5
This commit is contained in:
Monty Taylor 2018-07-12 17:18:02 -05:00
parent bcf471e37d
commit 07027f1f49
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 0 additions and 5 deletions

View File

@ -182,8 +182,6 @@ def build(args):
# source dir gets ... exciting. # source dir gets ... exciting.
cont.run("python setup.py bdist_wheel -d /root/.cache/pip") cont.run("python setup.py bdist_wheel -d /root/.cache/pip")
log.debug(cont.run("find /root/.cache/pip"))
log.debug(cont.run("ls -ltra /root/.cache"))
# Install with all container-related extras so that we populate # Install with all container-related extras so that we populate
# the wheel cache as needed. # the wheel cache as needed.
cont.run( cont.run(
@ -206,9 +204,6 @@ def build(args):
cont.run( cont.run(
"apk add {packages} dumb-init".format(packages=packages) "apk add {packages} dumb-init".format(packages=packages)
) )
wheel_list = cont.run("ls /root/.cache/pip/*whl")
log.debug("Wheels: {wheel_list}".format(wheel_list=wheel_list))
log.debug(cont.run("find /root/.cache/pip"))
cont.run( cont.run(
"pip install" "pip install"
" $(echo /root/.cache/pip/*.whl)[{base}]".format( " $(echo /root/.cache/pip/*.whl)[{base}]".format(