-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't build (Haskell) benchmarks by default, use cabal bench
#119
base: master
Are you sure you want to change the base?
Don't build (Haskell) benchmarks by default, use cabal bench
#119
Conversation
This broke the tahoe-lafs-mobile build since its criterion can't be built with the android version of GHC. Use `cabal build --enable-benchmark` to build the benchmark from now on.
cabal bench
Hey @meejah can we merge this? |
Or who could be interested in this - @sajith? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the deal with the CI failures here? Is upload-artifact@v3
too old?
Yes, that's what #121 is for - happy if you can take a look there as well! |
Please do it when you get to it, no hurries. (I don't have the necessary permission)
|
Building the benchmark suite by default broke the tahoe-lafs-mobile build since its
criterion
can't be built with the android version of GHC.Also, building the benchmark takes ages.
Use
cabal build --enable-benchmark
to build the benchmark from now on, andcabal bench
to run the benchmark (like specified in the Cabal documentation).