mesos / storm

Storm on Mesos!
Apache License 2.0
138 stars 66 forks source link

Download links for storm-mesos releases #18

Closed asanami closed 8 years ago

asanami commented 9 years ago

Can you please provide clarification on where to pick up releases for storm-mesos. The storm.yaml file references download links to:

http://downloads.mesosphere.io/storm/storm-mesos-0.9.0.1.tgz

I cannot find releases from the official mesosphere web page, and more specifically looking for the storm-mesos-0.9.2 release.

Thanks

hobofan commented 9 years ago

I haven't found any links on the website either. Here is the download link for 0.9.2-incubating (there is no release named 0.9.2): http://downloads.mesosphere.io/storm/storm-mesos-0.9.2-incubating.tgz

erikdw commented 8 years ago

The plan is to have these releases available for download from within the github project page.

But before that we need some version scheme. i.e., the framework has enough changes that simply referring to the storm version is insufficient. We should have a version for the framework itself, and also reference the storm version that is included within the package. e.g., like how kafka packages reference the scala version they are built with:

erikdw commented 8 years ago

The version naming scheme is being discussed in #76

erikdw commented 8 years ago

Per #76, we've agreed upon a version naming scheme, so when PR #77 is complete we can proceed publish our first "official" releases on this github project page.

How to upload releases

Building releases

I'm not sure of the full process yet, but here's a stab at it:

dreary present: super manual process

  1. manually rev the version
  2. bin/build-release.sh
  3. gci -m "release version X.Y.Z"; git tag vX.Y.Z; git push; git push --tags
  4. Upload the tarball to this project's releases view

copacetic short-term improvement: less manual process with maven assistance

Then we can move to leverage maven for automating some of the painful manual steps in there:

  1. run the maven assembly plugin (or some other one) for running bin/build-release.sh
  2. use the maven release plugin to manage the versions updating and tagging
  3. we still manually upload the tarball to this project's releases view

glorious future: full automation

Ideally we'd leverage travis-ci.org. See #83.

erikdw commented 8 years ago

Now that @DarinJ's #77 change has landed we have the basis for creating actual builds. I'll spend some time building a few variations and uploading them to the github project's releases page.

erikdw commented 8 years ago

Awesomely we have reached the "glorious future" already with @salimane's contribution in #117.

So the releases are available here:

We still should enhance the setup to allow use of the mvn release plugin so that there are less possibilities for manual screw-ups. See #127.