Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: The first release candidate is rc0. The following documented process assumes rc0, but replace it with the appropriate rc number as required.

...

Checkout the release branch

Code Block
git checkout branch-x.y.z

Make sure it passes the apache rat tool.

Code Block
mvn clean apache-rat:check

Create a Release Tag from the release branch

Code Block

git tag release-x.y.z-rc0
git push --tags origin

Make sure it passes the apache rat tool.

Code Block

mvn clean apache-rat:check

Create a tarball

Code Block
 cd ambari-git-x.y.z
 git clean -f -x -d
 cd ..
 cp -R ambari-git-x.y.z ambari-x.y.z-incubating
 tar --exclude=.git -zcvf ambari-x.y.z-incubating.tar.gz ambari-x.y.z-incubating 

...