Skip to content
Snippets Groups Projects
Commit eb71a8a5 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Finally release script is ready

parent fedc3691
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Main script to start release preparation
set -e
# set -e
#
# mkdir BornAgain-release
# cd BornAgain-release
#
# git clone git@apps.jcns.fz-juelich.de:BornAgain.git
# cd BornAgain
# git checkout PreRelease
#
# cd ..
# mkdir build
# cd build
#
# cmake ../BornAgain
#
# ./bin/release.sh
#
# echo " "
# echo "1) Modify BornAgain-release/build/RELEASE/CHANGELOG"
# echo "2) Copy new Windows build into BornAgain-release/build/RELEASE"
# echo "3) Run BornAgain-release/build/bin/release.sh with menu option #2 (upload on apps)"
# echo "4) Run BornAgain-release/build/bin/release.sh with menu option #3 (finalize git)"
......@@ -5,40 +5,45 @@ import subprocess
def check_manual():
cmd = "cd %s; wget http://apps.jcns.fz-juelich.de/src/BornAgain/%s" % (get_checkrelease_dir(), get_manual_name())
run_command(cmd)
if not os.path.exists(get_checkrelease_dir()+"/"+get_manual_name()):
exit("Error! Can't access user manual")
def check_tarball():
print "Checking tarball ..."
cmd = "cd %s; wget http://apps.jcns.fz-juelich.de/src/BornAgain/BornAgain-%s.tar.gz" % (get_checktarball_dir(), get_version())
print cmd
run_command(cmd)
cmd = "cd %s; tar zxf BornAgain-%s.tar.gz" % (get_checktarball_dir(), get_version())
print cmd
run_command(cmd)
cmd = "cd %s; mkdir build; mkdir installed" % get_checktarball_dir()
print cmd
run_command(cmd)
cmd = "cd %s/build; cmake -DCMAKE_INSTALL_PREFIX=../installed ../BornAgain-%s; make -j8; make check; make install" % (get_checktarball_dir(), get_version())
print cmd
run_command(cmd)
cmd = "source %s/installed/bin/thisbornagain.sh; python -c \"from libBornAgainCore import *; print GetVersionNumber()\"" % (get_checktarball_dir())
print cmd
#p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
#p.wait()
#return iter(p.stdout.readline, b''), iter(p.stderr.readline, b'')
def check_manual():
cmd = "cd %s; wget http://apps.jcns.fz-juelich.de/src/BornAgain/%s" % (get_checkrelease_dir(), get_manual_name())
print cmd
if not os.path.exists(get_checkrelease_dir()+"/"+get_manual_name()):
exit("Error! Can't access user manual")
result = subprocess.check_output(cmd, shell=True)
received_version = result.split("\n")[0]
if not received_version == get_version():
exit("Error! Can't get correct version from tarball. Received '"+received_version+"', expected '"+get_version()+"'")
def check_master_branch():
print "Checking master branch ..."
cmd = "cd %s; mkdir build; mkdir installed" % get_checkmaster_dir()
print cmd
run_command(cmd)
cmd = "cd %s; git clone git://apps.jcns.fz-juelich.de/BornAgain.git " % get_checkmaster_dir()
print cmd
run_command(cmd)
cmd = "cd %s/build; cmake -DCMAKE_INSTALL_PREFIX=../installed ../BornAgain; make -j8; make check; make install" % (get_checkmaster_dir())
print cmd
run_command(cmd)
cmd = "source %s/installed/bin/thisbornagain.sh; python -c \"from libBornAgainCore import *; print GetVersionNumber()\"" % (get_checkmaster_dir())
print cmd
result = subprocess.check_output(cmd, shell=True)
received_version = result.split("\n")[0]
if not received_version == get_version():
exit("Error! Can't get correct version from master branch. Received '"+received_version+"', expected '"+get_version()+"'")
def check_release():
......@@ -46,6 +51,9 @@ def check_release():
check_manual()
check_tarball()
check_master_branch()
print "\n"
print "Congratulations! New %s release was successfully validated. " % (get_version())
print "Don't forget to post news items."
print "And yes, this was very productive."
......@@ -8,46 +8,44 @@ from check_release import *
def upload_release():
print "Uploading to the app server ..."
cmd = "rsync --delete -avzhe ssh %s/ apps@apps.jcns.fz-juelich.de:/www/apps/src/BornAgain/" % get_upload_dir()
print cmd
#run_command(cmd)
run_command(cmd)
def finalize_git():
print "Finalizing git ..."
cmd = "cd %s; git commit -a -m \"Release %s\"" % (get_source_dir(), get_version())
#run_command(cmd)
run_command(cmd)
cmd = "cd %s; git push" % get_source_dir()
#run_command(cmd)
run_command(cmd)
# master branch
cmd = "cd %s; git checkout master" % get_source_dir()
#run_command(cmd)
run_command(cmd)
cmd = "cd %s; git merge --no--ff %s -m \"Merge %s\"" % (get_source_dir(), get_branch_name(), get_version())
#run_command(cmd)
cmd = "cd %s; git merge --no-ff %s -m \"Merge %s\"" % (get_source_dir(), get_branch_name(), get_version())
run_command(cmd)
cmd = "cd %s; git tag -a %s -m \"Release %s\"" % (get_source_dir(), get_version(), get_version())
#run_command(cmd)
run_command(cmd)
cmd = "cd %s; git push --tags" % get_source_dir()
#run_command(cmd)
run_command(cmd)
# develop branch
cmd = "cd %s; git checkout develop" % get_source_dir()
#run_command(cmd)
run_command(cmd)
cmd = "cd %s; git merge --no--ff %s -m \"Merge %s\"" % (get_source_dir(), get_branch_name(), get_version())
#run_command(cmd)
cmd = "cd %s; git merge --no-ff %s -m \"Merge %s\"" % (get_source_dir(), get_branch_name(), get_version())
run_command(cmd)
cmd = "cd %s; git push" % get_source_dir()
#run_command(cmd)
run_command(cmd)
# deleting branch
cmd = "cd %s; git branch -d %s" % (get_source_dir(), get_branch_name())
#run_command(cmd)
cmd = "cd %s; git push origin --delete %s" % (get_source_dir(), get_branch_name())
#run_command(cmd)
run_command(cmd)
def finalize_release():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment