Merge pull request #1620 from Helveg/cibw-debug-keep-container

feat: `CIBW_DEBUG_KEEP_CONTAINER`: debug container after build
This commit is contained in:
Joe Rickerby
2023-10-03 18:23:49 +01:00
committed by GitHub
2 changed files with 32 additions and 8 deletions
+15 -7
View File
@@ -17,7 +17,13 @@ from types import TracebackType
from typing import IO, Dict, Literal from typing import IO, Dict, Literal
from .typing import PathOrStr, PopenBytes from .typing import PathOrStr, PopenBytes
from .util import CIProvider, call, detect_ci_provider, parse_key_value_string from .util import (
CIProvider,
call,
detect_ci_provider,
parse_key_value_string,
strtobool,
)
ContainerEngineName = Literal["docker", "podman"] ContainerEngineName = Literal["docker", "podman"]
@@ -188,12 +194,14 @@ class OCIContainer:
assert isinstance(self.name, str) assert isinstance(self.name, str)
subprocess.run( keep_container = strtobool(os.environ.get("CIBW_DEBUG_KEEP_CONTAINER", ""))
[self.engine.name, "rm", "--force", "-v", self.name], if not keep_container:
stdout=subprocess.DEVNULL, subprocess.run(
check=False, [self.engine.name, "rm", "--force", "-v", self.name],
) stdout=subprocess.DEVNULL,
self.name = None check=False,
)
self.name = None
def copy_into(self, from_path: Path, to_path: PurePath) -> None: def copy_into(self, from_path: Path, to_path: PurePath) -> None:
# `docker cp` causes 'no space left on device' error when # `docker cp` causes 'no space left on device' error when
+17 -1
View File
@@ -1422,7 +1422,23 @@ This option is not supported in the overrides section in `pyproject.toml`.
test-skip = "*-macosx_arm64 *-macosx_universal2:arm64" test-skip = "*-macosx_arm64 *-macosx_universal2:arm64"
``` ```
## Other ## Debugging
### `CIBW_DEBUG_KEEP_CONTAINER`
Enable this flag to keep the container around for inspection after a build. This
option is provided for debugging purposes only.
Default: Off (0).
!!! caution
This option can only be set as environment variable on the host machine
#### Examples
```shell
export CIBW_DEBUG_KEEP_CONTAINER=TRUE
```
### `CIBW_BUILD_VERBOSITY` {: #build-verbosity} ### `CIBW_BUILD_VERBOSITY` {: #build-verbosity}
> Increase/decrease the output of pip wheel > Increase/decrease the output of pip wheel