Versions Compared

Key

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

...

Warning
titleBe Careful!

Once you move the artifacts into the release folder, they cannot be removed. THIS STEP IS IRREVERSIBLE.

To upload the binaries, you have to first upload them to the "dev" directory in the Apache Distribution repo, and then move the binaries from "dev" directory to "release" directory. This "moving" is the only way you can add stuff to the actual release directory.

Code Block
languagebash
# CreateCheckout the Spark directory in Apache distribution SVN folder and add the release artifacts there:
#"dev" repo https://dist.apache.org/repos/dist/dev/spark/
$ svn co https://dist.apache.org/repos/dist/dev/incubator/spark/spark-0.9.0-incubating-rc5spark/
 
# Download the voted binaries and add them to the directory (make a subdirectory for the RC)
$ scp pwendell@people.apache.org:~/public_html/spark-0.9.01-incubating-rc5rc3/* spark-0.9.01-incubating-rc5rc3/
# Verify md5 sums
$ svn add spark-0.9.0-incubating1
$ svn commit -m "Adding spark-0.8.1-incubating-rc1" 9.1" 
 
# Move the subdirectory in "dev" to the corresponding directory in "release"
$ svn mv https://dist.apache.org/repos/dist/dev/incubator/spark/spark-0.89.1-incubating-rc4rc3 \  
>    https://dist.apache.org/repos/dist/release/incubator/spark/spark-0.89.1-incubating
# Look at http://www.apache.org/dist/incubator/spark/ to make sure it's there.
# This will be mirrored throughout the Apache network.

...