Re: Download all build artifacts from a scratch build?

2020-07-29 Thread Richard Shaw
On Wed, Jul 29, 2020 at 8:45 AM Eugene Syromiatnikov wrote: > On Wed, Jul 29, 2020 at 07:37:31AM -0500, Richard Shaw wrote: > > I'm working on fixing a package but I have to use scratch builds because > > the tests only pass when running on koji, not a local mock build. It > > produces several rp

Re: Download all build artifacts from a scratch build?

2020-07-29 Thread Christian Dersch
On 29/07/2020 14:47, Richard Shaw wrote: > I couldn't find the capability within fedpkg or koji so for posterity > I came up with this: > > $ for rpm in $(lynx -dump -listonly > "https://koji.fedoraproject.org/koji/taskinfo?taskID=48063412"; | grep > "rpm$"); do curl -LO $rpm; done > > Thanks, >

Re: Download all build artifacts from a scratch build?

2020-07-29 Thread Fabio Valentini
On Wed, Jul 29, 2020 at 3:31 PM Richard Shaw wrote: > > I'm working on fixing a package but I have to use scratch builds because the > tests only pass when running on koji, not a local mock build. It produces > several rpms which I'd like to download for testing purposes. > > Currently I have to

Re: Download all build artifacts from a scratch build?

2020-07-29 Thread sergio
koji download-task 415255 On 2020-07-29 13:37, Richard Shaw wrote: I'm working on fixing a package but I have to use scratch builds because the tests only pass when running on koji, not a local mock build. It produces several rpms which I'd like to download for testing purposes. Currently I ha

Re: Download all build artifacts from a scratch build?

2020-07-29 Thread Eugene Syromiatnikov
On Wed, Jul 29, 2020 at 07:37:31AM -0500, Richard Shaw wrote: > I'm working on fixing a package but I have to use scratch builds because > the tests only pass when running on koji, not a local mock build. It > produces several rpms which I'd like to download for testing purposes. > > Currently I h

Re: Download all build artifacts from a scratch build?

2020-07-29 Thread Richard Shaw
I couldn't find the capability within fedpkg or koji so for posterity I came up with this: $ for rpm in $(lynx -dump -listonly " https://koji.fedoraproject.org/koji/taskinfo?taskID=48063412"; | grep "rpm$"); do curl -LO $rpm; done Thanks, RIchard > ___

Download all build artifacts from a scratch build?

2020-07-29 Thread Richard Shaw
I'm working on fixing a package but I have to use scratch builds because the tests only pass when running on koji, not a local mock build. It produces several rpms which I'd like to download for testing purposes. Currently I have to go to the url of the scratch build and download them individually