pypeline-runner 1.8.0__py3-none-any.whl → 1.8.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pypeline/__init__.py +1 -1
- pypeline/domain/execution_context.py +3 -1
- {pypeline_runner-1.8.0.dist-info → pypeline_runner-1.8.1.dist-info}/METADATA +1 -1
- {pypeline_runner-1.8.0.dist-info → pypeline_runner-1.8.1.dist-info}/RECORD +7 -7
- {pypeline_runner-1.8.0.dist-info → pypeline_runner-1.8.1.dist-info}/LICENSE +0 -0
- {pypeline_runner-1.8.0.dist-info → pypeline_runner-1.8.1.dist-info}/WHEEL +0 -0
- {pypeline_runner-1.8.0.dist-info → pypeline_runner-1.8.1.dist-info}/entry_points.txt +0 -0
pypeline/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.8.
|
|
1
|
+
__version__ = "1.8.1"
|
|
@@ -24,7 +24,9 @@ class ExecutionContext:
|
|
|
24
24
|
# Add the install directories to the PATH
|
|
25
25
|
env = os.environ.copy()
|
|
26
26
|
env["PATH"] = os.pathsep.join([path.absolute().as_posix() for path in self.install_dirs] + [env["PATH"]])
|
|
27
|
-
|
|
27
|
+
# When started from a windows shell (e.g. cmd on Jenkins) the shell parameter must be set to True
|
|
28
|
+
shell = True if os.name == "nt" else False
|
|
29
|
+
return SubprocessExecutor(command, cwd=cwd, env=env, shell=shell)
|
|
28
30
|
|
|
29
31
|
def create_artifacts_locator(self) -> ProjectArtifactsLocator:
|
|
30
32
|
return ProjectArtifactsLocator(self.project_root_dir)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
pypeline/__init__.py,sha256=
|
|
1
|
+
pypeline/__init__.py,sha256=6cud5pVpwnMsz6fxZVA6qWcQVSpLQXd0ddN6ip-1M_8,22
|
|
2
2
|
pypeline/__run.py,sha256=TCdaX05Qm3g8T4QYryKB25Xxf0L5Km7hFOHe1mK9vI0,350
|
|
3
3
|
pypeline/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
pypeline/domain/artifacts.py,sha256=5k7cVfHhLmvWXNuHKxXb9ca4Lxu0JytGQqazENCeKEU,1404
|
|
5
5
|
pypeline/domain/config.py,sha256=AlavAaz5hSxa6yaKYnj-x71ClhOtA41yv5Qf2JIE47k,1650
|
|
6
|
-
pypeline/domain/execution_context.py,sha256=
|
|
6
|
+
pypeline/domain/execution_context.py,sha256=BwjKxkv5nBIc2htCzMgXwnBFCORHpWZYWSKQD5wpcMA,1424
|
|
7
7
|
pypeline/domain/pipeline.py,sha256=2BsN2lw2znUxLH--Novyqe6SubVKs6XeHQSQf9yxirw,7788
|
|
8
8
|
pypeline/domain/project_slurper.py,sha256=e3BLV88GvfW3efh0agUWKqMk3oWnL602P5u9jER_o9U,971
|
|
9
9
|
pypeline/kickstart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -25,8 +25,8 @@ pypeline/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
25
25
|
pypeline/steps/create_venv.py,sha256=xCc73Hk62bbuJIM3btvapuoWeQy_Se5MsgffokYc-r0,2429
|
|
26
26
|
pypeline/steps/scoop_install.py,sha256=_YdoCMXLON0eIwck8PJOcNhayx_ka1krBAidw_oRuFE,3373
|
|
27
27
|
pypeline/steps/west_install.py,sha256=hPyr28ksdKsQ0tv0gMNytzupgk1IgjN9CpmaBdX5zps,1947
|
|
28
|
-
pypeline_runner-1.8.
|
|
29
|
-
pypeline_runner-1.8.
|
|
30
|
-
pypeline_runner-1.8.
|
|
31
|
-
pypeline_runner-1.8.
|
|
32
|
-
pypeline_runner-1.8.
|
|
28
|
+
pypeline_runner-1.8.1.dist-info/LICENSE,sha256=sKxdoqSmW9ezvPvt0ZGJbneyA0SBcm0GiqzTv2jN230,1066
|
|
29
|
+
pypeline_runner-1.8.1.dist-info/METADATA,sha256=pKwvpV0VI-4HqWax-CHRQSmuxM_NH3WdQTBKfWnwQZc,7557
|
|
30
|
+
pypeline_runner-1.8.1.dist-info/WHEEL,sha256=7dDg4QLnNKTvwIDR9Ac8jJaAmBC_owJrckbC0jjThyA,88
|
|
31
|
+
pypeline_runner-1.8.1.dist-info/entry_points.txt,sha256=pe1u0uuhPI_yeQ0KjEw6jK-EvQfPcZwBSajgbAdKz1o,47
|
|
32
|
+
pypeline_runner-1.8.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|