-
Notifications
You must be signed in to change notification settings - Fork 84
Description
It would be helpful for automation if the artifact output directories matches the inputs provided to BIB.
Current:
./output/**qcow2**/disk.qcow2 // --type **qcow2**
./output/**image**/disk.raw // --type **raw**
./output/**bootiso**/install.iso // --type **iso**
./output/**bootiso**/install.iso // --type **anaconda-iso**
Proposed:
./output/**qcow2**/disk.qcow2 // --type **qcow2**
./output/**raw**/disk.raw // --type **raw**
./output/**iso**/install.iso // --type **iso**
./output/**anaconda-iso**/install.iso // --type **anaconda-iso**
When building for multiple types, it's difficult to know which artifact matches to which type. I started baking in maps from the types to output directories, but things got a lot more confusing when I found out iso and anaconda-iso used the same output locations.
My aim here is to have a script which runs BIB with multiple types, then outputs information about each artifact. "You have requested a qcow2 and raw image. The qcow2 image can be found here, and the raw image can be found here".
This isn't something that can't be worked around, but it would be a nice UX improvement.
There's probably some reasons why these are structured this way that I am unaware of, so I'm happy for this to be closed as "Won't fix" if this is the case.