[arvados-dev] updated: ecdb11a532dd37a4fee0d93831ca67fffcad88c0

git repository hosting git at public.arvados.org
Mon May 20 14:00:00 UTC 2024


Summary of changes:
 cmd/art/TASKS      | 6 +++---
 cmd/art/redmine.go | 5 +++--
 2 files changed, 6 insertions(+), 5 deletions(-)

       via  ecdb11a532dd37a4fee0d93831ca67fffcad88c0 (commit)
       via  942c99713a1c3a8598bf5f03c6daa2d2141cbebb (commit)
      from  72a10522b7aeefd761264125582c4344066a36b4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit ecdb11a532dd37a4fee0d93831ca67fffcad88c0
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Mon May 20 09:59:05 2024 -0400

    Update release process TASKS
    
    no issue #
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/cmd/art/TASKS b/cmd/art/TASKS
index e857ab1..fe748c4 100644
--- a/cmd/art/TASKS
+++ b/cmd/art/TASKS
@@ -1,15 +1,15 @@
 Prepare X.Y-staging branch
 Update the "Upgrading Arvados and Release notes" doc page (main and release branch), update provision.sh, formula and arvbox to point to release
-Ensure that the entire automated testing pipeline is passing on Jenkins
+Ensure that developer-run-tests and developer-run-tests-doc-sdk-java-R are passing on Jenkins
 Review release branch
 Draft release notes and publish them to www-dev
 Review release notes
 Create next redmine release
 Build RC packages
 Build RC arvados/jobs image
-Ensure installer tests are passing
+Test installer formula / provision scripts with RC packages
 Build compute image & deploy RC packages to playground
-Run bam-to-vcf demo pipeline
+Run CWL conformance tests (jenkins) and bam-to-vcf demo pipeline (playground)
 Manual testing
 Approve RC for release
 Build final release packages

commit 942c99713a1c3a8598bf5f03c6daa2d2141cbebb
Author: Peter Amstutz <peter.amstutz at curii.com>
Date:   Mon May 20 09:55:01 2024 -0400

    art: print git hash and message when running find-and-associate
    
    no issue #
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>

diff --git a/cmd/art/redmine.go b/cmd/art/redmine.go
index a170a6e..e0aa803 100644
--- a/cmd/art/redmine.go
+++ b/cmd/art/redmine.go
@@ -477,7 +477,7 @@ var findAndAssociateIssuesCmd = &cobra.Command{
 
 		iter := object.NewFilterCommitIter(headCommit, &isValid, nil)
 
-		issues := make(map[int]bool)
+		issues := make(map[int]string)
 		re := regexp.MustCompile(`Merge branch `)
 		reNotMain := regexp.MustCompile(`Merge branch .(main|master)`)
 		reIssueRef := regexp.MustCompile(`(Closes|closes|Refs|refs|Fixes|fixes) #(\d+)`)
@@ -490,7 +490,7 @@ var findAndAssociateIssuesCmd = &cobra.Command{
 					if err != nil {
 						checkError(err)
 					}
-					issues[i] = true
+					issues[i] = fmt.Sprintf("%s: %s", c.Hash, c.Message)
 				}
 			}
 
@@ -522,6 +522,7 @@ var findAndAssociateIssuesCmd = &cobra.Command{
 				continue
 			}
 			fmt.Println(i.Subject)
+			fmt.Println(issues[k])
 
 			if i.Release != nil && i.Release["release"].ID != 0 {
 				if i.Release["release"].ID == releaseID {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list