https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 5dccc48db79d0d33bcc61ecf5c701e4ab36e154c authored by mvdbeek on 04 January 2024, 15:15:11 UTC
Create version 23.1.4
Tip revision: 5dccc48
build_packages.sh
#!/bin/bash

# Builds packages, sets new versions, but doesn't upload anything to pypi.
# Set DEV_RELEASE=1 to build the dev of packages.

set -ex

# Change to packages directory.
cd "$(dirname "$0")"

# ensure ordered by dependency dag
while read -r package_dir; do
    printf "\n========= RELEASING PACKAGE ${package_dir} =========\n\n"

    cd "$package_dir"

    make clean
    make commit-version
    make dist
    make new-version

    cd ..
done < packages_by_dep_dag.txt
back to top