Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions copilot-bluespec/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2025-12-04
* Disable building testsuite by default, use cabal flag `test-bluespec`
to enable. (#673)

2025-11-07
* Version bump (4.6). (#679)
* Flip direction of interface inputs and outputs in Bluespec. (#677)
Expand Down
10 changes: 10 additions & 0 deletions copilot-bluespec/copilot-bluespec.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ source-repository head
type: git
location: https://github.com/Copilot-Language/copilot-bluespec.git

flag test-bluespec
description: Enable tests that require the Bluespec compiler (bsc)
default: False
manual: True

library
default-language : Haskell2010
hs-source-dirs : src
Expand Down Expand Up @@ -98,3 +103,8 @@ test-suite tests

ghc-options:
-Wall

if flag(test-bluespec)
buildable: True
else
buildable: False