A collection of release tools used for Koha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Martin Renvoize 53a516b494
Resync master
1 day ago
bin Issue #46 - Remove koha-release pootle 1 week ago
etc Resync master 1 day ago
lib/Koha Fix condition check 1 week ago
.gitignore Ignore etc/user.yaml 2 years ago
.gitlab-ci.yml Issue #22: Use CI_COMMIT_SHA for images versions 2 years ago
Dockerfile Newer Debian 4 months ago
LICENSE Add LICENSE 5 months ago
README.md Use ssh-agent in the alias 5 months ago
cpanfile Have an honest cpanfile 2 years ago

README.md

Koha release tools

The release tools repository contains a collection of scripts to aid release mantainers and release managers in their tasks during their tenure in their respective roles.

Requirements

Software

The project has recently been dockerized to simplify it's use, all you need is:

Setup

It is not a bad idea to organize your projects on a directory. For the purpose of simplifying the instructions we will pick ~/git as the place in which to put all the repository clones:

mkdir -p ~/git
export PROJECTS_DIR=~/git
  • Clone the release-tools repository
cd $PROJECTS_DIR
git clone https://gitlab.com/koha-community/release-tools.git
  • Copy the example configuration file and use your favourite editor to update it to reflect your own details
cp etc/user.example etc/user.yaml
vim etc/user.yaml
  • Set some mandatory environment variables:
export RELEASE_TOOLS_USER_CONFIG=~/git/release-tools/etc/user.yaml;
echo "export SYNC_REPO=$PROJECTS_DIR/koha" >> ~/.bashrc
echo "export RELEASE_TOOLS_USER_CONFIG=$RELEASE_TOOLS_USER_CONFIG" >> ~/.bashrc
echo "alias release-tools='docker run -v \${SYNC_REPO}:/koha -v \${RELEASE_TOOLS_USER_CONFIG}:/release-tools/etc/user.yaml --workdir /koha -ti registry.gitlab.com/koha-community/release-tools ssh-agent bash'" >> ~/.bashrc

Usage

After that setup, you should be able to run the container like this:

release-tools

Note: If the above doesn't work yet, it's likely you need to re-source your shell.

Or if you prefer to run it manually, you can use:

docker run \
    -v ${SYNC_REPO}:/koha \
    -v ${RELEASE_TOOLS_USER_CONFIG}:/release-tools/etc/user.yaml \
    --workdir /koha
    -ti \
    registry.gitlab.com/koha-community/release-tools \
    bash

Scripts

The most commonly used scripts can be found within the bin/ directory, but they are generally written to be run from within your koha source clone repository.

cd /koha

bin/koha-push

Used to check for new authors and update bugzilla prior to pushing your branch.

The script should be run from within your koha source directory.

koha-push updatebz
koha-push updatebz --range HASH..HEAD
koha-push updatebz --range HASH..HEAD

Upon execution it will walk through all commits that appear in your local branch but do not yet appear upstream. It will update etc/sponsor_map.yaml (from release_tools repo) and docs/contributors.yaml (from Koha repo). The script will then mark the relevant bugs as 'Pushed to X', add the relevant version to the versions released box and add your configured thankyou comment to the bug.

bin/koha-release

Used to build the release notes and report release information.

The script should be called from within your koha source directory.

koha-release v19.11.00..HEAD info
koha-release v19.11.00..HEAD notes
koha-release v19.11.00..HEAD notes --silent
koha-release v19.11.00..HEAD html misc/release_notes/release_notes_19_11_01.html
koha-release v19.11.00..HEAD tarball --branch BRANCH

Upon execution it will walk through all commits in your given range and generate a set of release notes from their content sourcing data from the commits, bugzilla and the translation site. It will interactively ask you about author details should it find a commit with an unrecognised author, unless the --silent parameter is passed.

  • The notes command will output a markdown file.
  • The html command will read in the aforementioned markdown file and general an html file.
  • The tarball command will produce the signed tar archives to be uploaded to download.koha-community.org

Koha Logo