Management scripts for releasing HuBMAP computational pipelines
Project description
Overview
This package provides a convenience script which automates some aspects of tagging and releasing production-ready versions of HuBMAP computational analysis pipelines.
Installation
Run python3 -m pip install hubmap-pipeline-release-mgmt.
Usage
Once the package is installed, navigate to a repository containing a pipeline, and ensure that the master branch is what you would like to release as a new tagged version (including the state of any submodules).
Choose a new version number (preferably starting with v), like v1.0, and run:
tag_release_pipeline v1.0
To sign Git tags with GPG, append --sign (and if you want to sign with a non-default key, add --sign=preferred@email.address.)
(Your local master branch can be behind or ahead of origin/master – if behind, it will be updated with git pull, and if ahead origin/master will be updated with git push. Your master branch and origin/master cannot have diverged, however; tag_release_pipeline will abort if this is the case.)
The tag_release_pipeline script makes several assumptions about the state of your repository, and if these assumptions are violated, the script will probably fail loudly and leave your local copy in an arbitrary state. Make sure you have no local modifications for best results (though you shouldn’t anyway, if preparing a release version of a pipeline).
At a high level, tag_release_pipeline does:
Checkout the master branch, pull/push so it and origin/master match
Checkout or create a release branch
Merge master into release
Update the content of all submodules to match the versions committed in master
Build all Docker containers in docker_images.txt, using the multi-docker-build package
Tag all containers as latest and with the new tag name
Push all Docker containers/tags to Docker Hub
Update all CWL files to use tagged versions of any containers built from the pipeline repository (i.e. those listed in docker_images.txt)
Commit the updated CWL files
Tag the new commit, signed or not
Push the master and release branches, and the new tag
Options:
- --pretend
Don’t run anything that would make any modifications to any Git repositories or Docker images. This will still run git branch -a to obtain the list of Git branches, however. This will print all commands which would be run.
- --sign
Sign the new tag with GPG using your default identity.
- --sign=identity
Sign the new tag with GPG, using the specified identity (email address).
- --no-push
Don’t push anything to Docker Hub or the Git remote repository. Everything will be committed, tagged, and built locally.
Requirements
Python 3.6 or newer.
Version 0.3 or newer of the multi-docker-build PyPI package (which should be installed automatically).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file hubmap_pipeline_release_mgmt-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: hubmap_pipeline_release_mgmt-0.2.1-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15b39b30dc79873efb638b412c9ffeb00680a9ef3cb06198d767b222c03fcb2c |
|
MD5 | b3919fdc0f0cb78353ac01f11428a412 |
|
BLAKE2b-256 | 1b00e6a10de2379100626e6cb976de421ce5543d752220d4cf73e43f49170480 |