Skip to content
Snippets Groups Projects
Commit 1d6c5199 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[deploy] Avoid stable/master doc deployment from non-master via flag

parent 9d545f8a
No related branches found
No related tags found
1 merge request!51Avoid stable/master doc deployment from non-master via flag
Pipeline #29518 passed
...@@ -78,8 +78,8 @@ def deploy_conda_package(package, arch, stable, public, username, password, ...@@ -78,8 +78,8 @@ def deploy_conda_package(package, arch, stable, public, username, password,
davclient.upload(local_path=package, remote_path=remote_path) davclient.upload(local_path=package, remote_path=remote_path)
def deploy_documentation(path, package, stable, public, branch, tag, username, def deploy_documentation(path, package, stable, latest, public, branch, tag,
password, dry_run): username, password, dry_run):
'''Deploys sphinx documentation to the appropriate webdav locations '''Deploys sphinx documentation to the appropriate webdav locations
Args: Args:
...@@ -88,6 +88,11 @@ def deploy_documentation(path, package, stable, public, branch, tag, username, ...@@ -88,6 +88,11 @@ def deploy_documentation(path, package, stable, public, branch, tag, username,
package (str): Full name (with namespace) of the package being treated package (str): Full name (with namespace) of the package being treated
stable (bool): Indicates if the documentation corresponds to the latest stable (bool): Indicates if the documentation corresponds to the latest
stable build stable build
latest (bool): Indicates if the documentation being deployed correspond to
the latest stable for the package or not. In case the documentation
comes from a patch release which is not on the master branch, please set
this flag to ``False``, which will make us avoid deployment of the
documentation to ``master`` and ``stable`` sub-directories.
public (bool): Indicates if the documentation is supposed to be distributed public (bool): Indicates if the documentation is supposed to be distributed
publicly or privatly (within Idiap network) publicly or privatly (within Idiap network)
branch (str): The name of the branch for the current build branch (str): The name of the branch for the current build
...@@ -120,10 +125,11 @@ def deploy_documentation(path, package, stable, public, branch, tag, username, ...@@ -120,10 +125,11 @@ def deploy_documentation(path, package, stable, public, branch, tag, username,
# "stable" subdir as well # "stable" subdir as well
deploy_docs_to = set([branch]) deploy_docs_to = set([branch])
if stable: if stable:
deploy_docs_to.add('master')
if tag is not None: if tag is not None:
deploy_docs_to.add(tag) deploy_docs_to.add(tag)
deploy_docs_to.add('stable') if latest:
deploy_docs_to.add('master')
deploy_docs_to.add('stable')
# creates package directory, and then uploads directory there # creates package directory, and then uploads directory there
for k in deploy_docs_to: for k in deploy_docs_to:
......
...@@ -86,14 +86,27 @@ Examples: ...@@ -86,14 +86,27 @@ Examples:
$ bdt ci deploy -vv $ bdt ci deploy -vv
2. Deploys stable release from non-master branch (e.g. you're releasing a patch release for an older version of a package):
$ bdt ci deploy -vv --no-latest
''') ''')
@click.option('-n', '--latest/--no-latest', default=True,
help='If set (the default), for stable builds, deploy documentation ' \
'to both "stable" and "master" branches, besides "<branch>" and ' \
'"<tag>" - otherwise, only deploys documentation to "<branch>" ' \
'and "<tag>". This option is useful if you are publishing ' \
'corrections of a release from a stable branch which is **NOT** ' \
'the master branch, so you would not like to overwrite ' \
'documentation deployments for "stable" and "master"')
@click.option('-d', '--dry-run/--no-dry-run', default=False, @click.option('-d', '--dry-run/--no-dry-run', default=False,
help='Only goes through the actions, but does not execute them ' \ help='Only goes through the actions, but does not execute them ' \
'(combine with the verbosity flags - e.g. ``-vvv``) to enable ' \ '(combine with the verbosity flags - e.g. ``-vvv``) to enable ' \
'printing to help you understand what will be done') 'printing to help you understand what will be done')
@verbosity_option() @verbosity_option()
@bdt.raise_on_error @bdt.raise_on_error
def deploy(dry_run): def deploy(latest, dry_run):
"""Deploys build artifacts (conda packages and sphinx documentation) """Deploys build artifacts (conda packages and sphinx documentation)
Deployment happens at the "right" locations - conda packages which do not Deployment happens at the "right" locations - conda packages which do not
...@@ -129,8 +142,8 @@ def deploy(dry_run): ...@@ -129,8 +142,8 @@ def deploy(dry_run):
overwrite=False, dry_run=dry_run) overwrite=False, dry_run=dry_run)
local_docs = os.path.join(os.environ['CI_PROJECT_DIR'], 'sphinx') local_docs = os.path.join(os.environ['CI_PROJECT_DIR'], 'sphinx')
deploy_documentation(local_docs, package, stable=stable, public=public, deploy_documentation(local_docs, package, stable=stable, latest=latest,
branch=os.environ['CI_COMMIT_REF_NAME'], public=public, branch=os.environ['CI_COMMIT_REF_NAME'],
tag=os.environ.get('CI_COMMIT_TAG'), username=os.environ['DOCUSER'], tag=os.environ.get('CI_COMMIT_TAG'), username=os.environ['DOCUSER'],
password=os.environ['DOCPASS'], dry_run=dry_run) password=os.environ['DOCPASS'], dry_run=dry_run)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment