Open pkgw opened 7 years ago
This is probably doable. Though this might make more sense in conda-build
proper. WDYT?
Should add there are some packages with a lot of files where we might want to disable this. Though a conda-build
or perhaps conda-verify
flag that we can enable would be pretty useful.
(I think this is the right repo for this feature request …)
I would like the CI builds to dump out a list of the files contained in the packages produced at the end of each run. Seeing the list of files can be helpful for checking that you're including the right files, and not including useless files — especially when a recipe is first being developed.
This shouldn't be too hard to implement, I think — something like
for FILE in $BLAH/*.tar.bz2 ; do tar tjf $FILE |sort ; done
after the build succeeds. I suppose it might be a hassle to get that to work on Windows, actually.