Skip to content
Snippets Groups Projects
Commit 84f497cf authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Merge branch 'v2.3' into v2.4

parents ac1b3bd1 7a5f5e01
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,8 @@ script:
# TEST:
- if test "$VALGRIND" == yes ; then OPT=valgrind ; else OPT="" ; fi
- if test "$PLUMED_CXX" || test -n "$PLUMED_MACPORTS" ; then make -C regtest $OPT ; fi
# --no-print-directory make it more silent
- if test "$PLUMED_CXX" || test -n "$PLUMED_MACPORTS" ; then make --no-print-directory -C regtest $OPT ; fi
# test with gcc6
- if test "$PLUMED_DOCKER" = yes ; then docker run -v "$PWD/regtest":/home/plumed/regtest -it plumed /bin/bash -c "make -C regtest" ; fi
......
......@@ -116,6 +116,7 @@ set -x
esac
git add --all .
git commit -m "Update to ${GIT_OWNER}/${GIT_REPO}@$hash"
# >/dev/null to avoid excessive noise on travis log
git commit -m "Update to ${GIT_OWNER}/${GIT_REPO}@$hash" >/dev/null
# -q and 2> is not to show the GIT_TOKEN on Travis log
git push -q -f doc gh-pages 2> /dev/null
......@@ -114,8 +114,7 @@ if ! test "$VALIDATED" ; then
update_changelog CHANGES/v$shortversion.md $version $shortversion "coming soon"
echo
msg="Travis tests for v$version
[makedoc]"
"
echo "Now I will add an empty commit and push the result to origin"
echo "I will use the following commands:"
echo "***"
......@@ -126,7 +125,7 @@ if ! test "$VALIDATED" ; then
confirm || exit
git add CHANGES/v$shortversion.md
git commit --allow-empty -m "$msg"
git push origin v$shortversion
git push -f origin v$shortversion:test-v$shortversion
echo
echo "Now you should go at this link:"
echo " http://travis-ci.org/plumed/plumed2/builds"
......@@ -147,8 +146,7 @@ else
cat VERSION
echo "***"
msg="Release v$version
[makedoc]"
"
echo "Now I will add it, prepare a release commit, add a tag named v$version"
echo "push it to origin and create a tgz file"
echo "I will use the following commands:"
......
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