Skip to content
Snippets Groups Projects
Unverified Commit 0bedc4ac authored by Artem Pelenitsyn's avatar Artem Pelenitsyn Committed by GitHub
Browse files

Disable everfailing assertion (#8821)

* Disable everfailing assertion

See discussion at https://github.com/haskell/cabal/issues/6006



* Fix unused parameter

---------

Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
parent 0ea10013
No related branches found
No related tags found
No related merge requests found
......@@ -235,19 +235,24 @@ sanityCheckElaboratedConfiguredPackage
-> ElaboratedConfiguredPackage
-> a
-> a
sanityCheckElaboratedConfiguredPackage sharedConfig
sanityCheckElaboratedConfiguredPackage _sharedConfig
elab@ElaboratedConfiguredPackage{..} =
(case elabPkgOrComp of
ElabPackage pkg -> sanityCheckElaboratedPackage elab pkg
ElabComponent comp -> sanityCheckElaboratedComponent elab comp)
-- The assertion below fails occasionally for unknown reason
-- so it was muted until we figure it out, otherwise it severely
-- hinders our ability to share and test development builds of cabal-install.
-- Tracking issue: https://github.com/haskell/cabal/issues/6006
--
-- either a package is being built inplace, or the
-- 'installedPackageId' we assigned is consistent with
-- the 'hashedInstalledPackageId' we would compute from
-- the elaborated configured package
. assert (elabBuildStyle == BuildInplaceOnly ||
elabComponentId == hashedInstalledPackageId
(packageHashInputs sharedConfig elab))
-- . assert (elabBuildStyle == BuildInplaceOnly ||
-- elabComponentId == hashedInstalledPackageId
-- (packageHashInputs sharedConfig elab))
-- the stanzas explicitly disabled should not be available
. assert (optStanzaSetNull $
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment