Skip to content

Conversation

@bernt-matthias
Copy link
Collaborator

some mulled v2 hashes where computed wrong due to: galaxyproject/galaxy#18522

Lets see if this works in one PR :)

some mulled v2 hashes where computed wrong due to:
galaxyproject/galaxy#18522
@bgruening
Copy link
Member

I expect this to fail unfortunately ... too less space in the runner.

@bernt-matthias
Copy link
Collaborator Author

Pipeline finished. But I guess the real deal happens when merging, or?

Just creating separate PR using:

#!/bin/bash

set -e

for i in combinations/mulled-v2-*$1.tsv; do
	b=$(echo "$i" | sed 's/-.\.tsv$//; s/combinations\///');
	r=$(grep -v "^#" "$i" | awk '{print $1}');
	h=$(mulled-hash "$r");
	if [ "$b" != "$h" ]; then 
		echo $b $h $r; git mv $i combinations/$h-$1.tsv; 
		git checkout -b "$(echo $b | sed 's/:/-/')"
		git commit -m "fix hash $b"
		gh pr create -R BioContainers/multi-package-containers -B master --fill
		git checkout master
	else 
		echo OK $i ; 
	fi; 
done

@bernt-matthias
Copy link
Collaborator Author

Separate PR have been created.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants