Skip to content

Commit a002cc7

Browse files
committed
Refine docstring and add CHANGELOG entry #688
Signed-off-by: Thomas Druez <tdruez@nexb.com>
1 parent 1d32d08 commit a002cc7

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ Changelog
44
v33.0.0 (unreleased)
55
--------------------
66

7+
- Add a new ``develop_to_deploy`` pipeline specialized in creating relations between
8+
the development source code and binaries or deployed code.
9+
This pipeline is expecting 2 archive files with "from-" and "to-" filename prefixes
10+
as inputs:
11+
1. "from-[FILENAME]" archive containing the development source code
12+
2. "to-[FILENAME]" archive containing the deployment compiled code
13+
https://github.com/nexB/scancode.io/issues/659
14+
715
- Add new command line option to create-project and add-input management commands to
816
copy the content of a local source directory to the project codebase work directory.
917
https://github.com/nexB/scancode.io/pull/672

scanpipe/pipelines/develop_to_deploy.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,14 @@
3030

3131

3232
class DevelopToDeploy(Pipeline):
33-
"""Relate develop and deploy code tree."""
33+
"""
34+
Relate develop and deploy code trees.
35+
36+
This pipeline is expecting 2 archive files with "from-" and "to-" filename
37+
prefixes as inputs:
38+
- "from-[FILENAME]" archive containing the development source code
39+
- "to-[FILENAME]" archive containing the deployment compiled code
40+
"""
3441

3542
@classmethod
3643
def steps(cls):

0 commit comments

Comments
 (0)