You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2022/09/04 17:50:43 UTC

[lucene] branch main updated: Add tidy after addVersion is called. (#11748)

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new d3460fa1bb9 Add tidy after addVersion is called. (#11748)
d3460fa1bb9 is described below

commit d3460fa1bb97b317275172dde10133b53aa67c1d
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Sun Sep 4 19:50:38 2022 +0200

    Add tidy after addVersion is called. (#11748)
---
 dev-tools/scripts/releaseWizard.yaml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-tools/scripts/releaseWizard.yaml b/dev-tools/scripts/releaseWizard.yaml
index dfa70f24172..6a95659eaf2 100644
--- a/dev-tools/scripts/releaseWizard.yaml
+++ b/dev-tools/scripts/releaseWizard.yaml
@@ -424,7 +424,7 @@ groups:
         cmd: git checkout main
         tee: true
       - !Command
-        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }}
+        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }} && {{ gradle_cmd }} tidy
         tee: true
       - !Command
         comment: Make sure the edits done by `addVersion.py` are ok, then push
@@ -454,7 +454,7 @@ groups:
         cmd: git checkout {{ stable_branch }}
         tee: true
       - !Command
-        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }}
+        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }} && {{ gradle_cmd }} tidy
         tee: true
       - !Command
         comment: Make sure the edits done by `addVersion.py` are ok, then push
@@ -1296,7 +1296,7 @@ groups:
         comment: Go to main branch
         logfile: checkout-main.log
       - !Command
-        cmd: python3 -u dev-tools/scripts/addVersion.py {{ release_version }}
+        cmd: python3 -u dev-tools/scripts/addVersion.py {{ release_version }} && {{ gradle_cmd }} tidy
         logfile: addversion-main.log
       - !Command
         cmd: git diff
@@ -1310,7 +1310,7 @@ groups:
         logfile: checkout-stable.log
         comment: Now the same for the stable branch
       - !Command
-        cmd: python3 -u dev-tools/scripts/addVersion.py {{ release_version }}
+        cmd: python3 -u dev-tools/scripts/addVersion.py {{ release_version }} && {{ gradle_cmd }} tidy
         logfile: addversion-stable.log
       - !Command
         cmd: git diff
@@ -1381,7 +1381,7 @@ groups:
         cmd: git checkout {{ release_branch }}
         tee: true
       - !Command
-        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }}
+        cmd: python3 -u dev-tools/scripts/addVersion.py {{ next_version }} && {{ gradle_cmd }} tidy
         tee: true
       - !Command
         cmd: git diff