I think you are almost where I think I’d like to be. What I’d may attempt to do here is the following:
-
From each of your CI jobs, collect the versions of packages used (e.g. using the build plan file).
-
In a subsequent CI job, collect all of these plans, and mechanically update the
.cabal
file so that the bounds are derived from the versions in these plans.It’d be like
cabal gen-bounds
, but taking multiple builds plans as input. I reported cabal gen-bounds: Consume (multiple) build plans? · Issue #8654 · haskell/cabal · GitHub to see ifcabal gen-bounds
could do that.Or maybe Oleg Grenus’s
cabal-fmt
code could be easily used to transform the.cabal
files appropriately (if one is happy with it’s formatting choices.) – ah, not intended for that. But probably doable using theCabal-syntax
package directly. -
If that changes the .cabal file, automatically push the change (This way, you never have to manually edit the .cabal files; just edit or add
.project
files and CI takes care of it). If it doesn’t change the.cabal
file all is good and CI turns green.