Repository: lucy
Updated Branches:
  refs/heads/master e11061a44 -> 6e490904e


Address CI test scripts in release_commands.pl


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/6e490904
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/6e490904
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/6e490904

Branch: refs/heads/master
Commit: 6e490904ee5c84e8197994f85d3bd09e73b8e4c8
Parents: e11061a
Author: Nick Wellnhofer <[email protected]>
Authored: Sat Jan 9 16:56:14 2016 +0100
Committer: Nick Wellnhofer <[email protected]>
Committed: Sat Jan 9 16:56:14 2016 +0100

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/6e490904/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index 07fe11a..ed6fd0e 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -74,7 +74,19 @@ if ( $rc < 2 ) {
 if ( $micro == 0 && $rc < 2 ) {
     say qq|# Since this is the first release in a series (i.e. X.Y.0),|;
     say qq|# create a branch.|;
-    say qq|git checkout -b $major.$minor|;
+    say qq|git checkout -b $major.$minor\n|;
+
+    say qq|# Update the CI test scripts|;
+    say qq|# - devel/bin/appveyor-build.bat|;
+    say qq|# - devel/bin/travis-test.sh|;
+    say qq|# to use the Clownfish branch containing the required major|;
+    say qq|# version. Replace the commands|;
+    say qq|#     git clone -q --depth 1 <cfish_repo>|;
+    say qq|# with|;
+    say qq|#     git clone -q -b <cfish_branch> --depth 1 <cfish_repo>|;
+    say qq|[...]|;
+    say qq|git commit -m "Updating CI test scripts |
+        . qq|for release $x_y_z_version."\n|;
 }
 
 say qq|# Create a tag for the release candidate.|;

Reply via email to