Files
superset2/RELEASING
Maxime Beauchemin ea807f204d [WiP] Improvements related to ASF release process
* Removing translation binaries (.mo)
* Working on 2 docker files to help package and validate releases
  * Dockerfile.from_tarball: takes a VERSION as input, downloads
    official source release fro svn and bakes it into a functional
    docker image that can be validated
  * Dockerfile.make_tarball: helps a maintainer to package and sign a
    release candidate or release

(cherry picked from commit 29f9b34b262bc3078d79782d2d0401dd344d2355)
2019-05-17 17:04:50 -07:00
..

Apache Releases

To make a fresh tarball of a git reference on apache/incubator-superset (push your tag first!)

docker build -f Dockerfile.make_tarball . --build-arg VERSION=0.32.0rc1

To make a working build given a tarball

# Building a docker from a tarball
VERSION=0.32.0rc2 && \
docker build -t apache-superset:$VERSION -f Dockerfile.from_tarball . --build-arg VERSION=$VERSION

# testing the resulting docker
docker run -p 5001:8088 apache-superset:0.32.0rc2
# you should be able to access localhost:5001 on your browser
# login using admin/admin

Refresh documentation website

Every once in a while we want to compile the documentation and publish it. Here's how to do it.

# install doc dependencies
pip install -r docs/requirements.txt

# build the docs
python setup.py build_sphinx

# copy html files to temp folder
cp -r docs/_build/html/ /tmp/tmp_superset_docs/

# clone the docs repo
cd ~/
git clone https://git-wip-us.apache.org/repos/asf/incubator-superset-site.git

# copy
cp -r /tmp/tmp_superset_docs/ ~/incubator-superset-site.git/

# commit and push to `asf-site` branch
cd ~/incubator-superset-site.git/
git checkout asf-site
git add .
git commit -a -m "New doc version"
git push origin master

Apache Releases

You'll probably want to run these commands manually and understand what they do prior to doing so.

First you need to setup a few things. This is a one-off and doesn't need to be done at every release.

    # Create PGP Key
    gpg --gen-key
     
    # Checkout ASF dist repo

    svn checkout https://dist.apache.org/repos/dist/dev/incubator/superset/ ~/svn/superset_dev

    svn checkout https://dist.apache.org/repos/dist/incubator/superset/ ~/svn/superset
    cd ~/svn/superset
 
  
    # Add your GPG pub key to KEYS file. Replace "Maxime Beauchemin" with your name
    export FULLNAME="Maxime Beauchemin"
    (gpg --list-sigs $FULLNAME && gpg --armor --export $FULLNAME ) >> KEYS
   
    
    # Commit the changes
    svn commit -m "Add PGP keys of new Superset committer"

Now let's craft a source release

    # Assuming these commands are executed from the root of the repo
    # Setting a VERSION var will be useful
    export VERSION=0.31.0rc18
    export RELEASE=apache-superset-incubating-${VERSION}
    export RELEASE_TARBAL=${RELEASE}-source.tar.gz

    # Let's create a git tag
    git tag -f ${VERSION}

    # [WARNING!] This command wipes everything in your repo that is
    # gitignored in preparation for the source release.
    # You may want to check that there's nothing your care about here first.
    # Alternatively you could clone the repo into another location as in
    # git clone git@github.com:apache/incubator-superset.git superset-releases
    git clean -fxd
    git archive \
        --format=tar.gz ${VERSION} \
        --prefix=${RELEASE}/ \
        -o ~/svn/superset_dev/${VERSION}/${RELEASE_TARBALL}

    cd ~/svn/superset_dev/
    scripts/sign.sh ${RELEASE}-source.tar.gz

Now let's ship this RC into svn's dev folder

    # cp or mv the files over to the svn repo
    mkdir ~/svn/superset_dev/${VERSION}/
    cp ${RELEASE_TARBALL} ~/svn/superset_dev/${VERSION}/
    cd ~/svn/superset_dev/
    svn add ${VERSION}
    svn commit

Now you're ready to start the VOTE thread.

Upon a successful vote, you'll have to copy the folder into the non-"dev/" folder.

    cp -r ~/svn/superset_dev/${VERSION}/ ~/svn/superset/${VERSION}/
    cd ~/svn/superset/
    svn add ${VERSION}
    svn commit

Now you can announce the release on the mailing list, make sure to use the proper template