Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
73cccbbe
Commit
73cccbbe
authored
5 years ago
by
kristenk
Committed by
Oleg Grenrus
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Improve reproducibility of install command used in solver Hackage benchmark.
parent
84209a0f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
solver-benchmarks/HackageBenchmark.hs
+28
-3
28 additions, 3 deletions
solver-benchmarks/HackageBenchmark.hs
with
28 additions
and
3 deletions
solver-benchmarks/HackageBenchmark.hs
+
28
−
3
View file @
73cccbbe
...
...
@@ -174,9 +174,34 @@ runCabal :: Int -> FilePath -> [String] -> PackageName -> IO CabalTrial
runCabal
timeoutSeconds
cabal
flags
pkg
=
do
((
exitCode
,
err
),
time
)
<-
timeEvent
$
do
let
timeout
=
"timeout --foreground -sINT "
++
show
timeoutSeconds
cabalCmd
=
unwords
$
[
cabal
,
"install"
,
"--ignore-project"
,
"--lib"
,
unPackageName
pkg
,
"--dry-run"
,
"-vsilent+nowrap"
]
++
flags
cabalCmd
=
unwords
$
[
cabal
-- A non-existent store directory prevents cabal from reading the
-- store, which would cause the size of the store to affect run
-- time.
,
"--store-dir=non-existent-store-dir"
,
"v2-install"
-- These flags prevent a Cabal project or package environment from
-- affecting the install plan.
,
"--ignore-project"
,
"--package-env=non-existent-package-env"
-- --lib allows solving for packages with libraries or
-- executables.
,
"--lib"
,
unPackageName
pkg
,
"--dry-run"
-- The test doesn't currently handle stdout, so we suppress it
-- with silent. nowrap simplifies parsing the errors messages.
,
"-vsilent+nowrap"
]
++
flags
cmd
=
(
shell
(
timeout
++
" "
++
cabalCmd
))
{
std_err
=
CreatePipe
}
-- TODO: Read stdout and compare the install plans.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment