Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Globbing #3

Open
mbauhardt opened this issue Nov 2, 2020 · 0 comments
Open

Support Globbing #3

mbauhardt opened this issue Nov 2, 2020 · 0 comments

Comments

@mbauhardt
Copy link

Hi.
I'm using this plugin to have the jmh report of my project directly
available/rendered within jenkins. Everything works so far in a single
project.

e.g.

steps {
	bash './gradlew jmh'
}
post {
	always {
		jmhReport 'build/reports/jmh/result.json'
	}
}

But when i have a multi-project, I have to define the result file on each module.
My question is, is "globbing" a missing feature?
Or did I misunderstand the README and the class/method

public void perform(Run<?, ?> run, FilePath workspace, Launcher launcher, TaskListener listener)
to be able to use globbing/pattern to define more than just one result file.

e.g.

steps {
	bash './gradlew jmh'
}
post {
	always {
		jmhReport '**/build/reports/jmh/result.json'
	}
}

thx
marko

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

No branches or pull requests

1 participant