Skip to content
Snippets Groups Projects
Verified Commit d100373e authored by Julian Ospald's avatar Julian Ospald :tea:
Browse files

Don't bench on windows

parent c648e497
Branches issue-109
No related tags found
No related merge requests found
......@@ -88,6 +88,11 @@ run tar xf dist-newstyle/sdist/filepath-*.tar.gz
run cd filepath-*
run cabal v2-build ${args[@]}
run cabal v2-test ${args[@]} --test-show-details=direct all
run cabal v2-bench ${args[@]} all
case "$(uname -s)" in
MSYS_*|MINGW*) ;;
*)
run cabal v2-bench ${args[@]} all
;;
esac
run cabal v2-haddock
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