Skip to content
Commits on Source (2)
......@@ -41,7 +41,7 @@ Build Package:
Pin:
# Pin dependencies in requirements.txt for reproducing pipeline results
stage: test
stage: build
extends: [.python]
script:
- pip install --prefer-binary -e .
......
......@@ -70,9 +70,10 @@ Volumes = MutableSequence[Mount]
IPAddress = Union[ipaddress.IPv4Address, ipaddress.IPv6Address]
DOCKER: Argument
match which("docker"):
case None:
DOCKER: Argument = DownloadableDocker().get_binary()
DOCKER = DownloadableDocker().get_binary()
case str(path):
DOCKER = Path(path)
......