-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- [x] moved the cardano ledger specs out of the lib - [x] add CI checks that they fine-types check ADP-3181
- Loading branch information
Showing
55 changed files
with
23 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,5 @@ cabal*.project.local* | |
.ghci | ||
hie.yaml | ||
.direnv/ | ||
result | ||
lib/cardano-ledger-specs/fine-types |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
lib/fine-types/test/Language/FineTypes/Cardano/Ledger/AllegraSpec.hs
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
lib/fine-types/test/Language/FineTypes/Cardano/Ledger/AlonzoSpec.hs
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
lib/fine-types/test/Language/FineTypes/Cardano/Ledger/BabbageSpec.hs
This file was deleted.
Oops, something went wrong.
55 changes: 0 additions & 55 deletions
55
lib/fine-types/test/Language/FineTypes/Cardano/Ledger/Common.hs
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
lib/fine-types/test/Language/FineTypes/Cardano/Ledger/MarySpec.hs
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
lib/fine-types/test/Language/FineTypes/Cardano/Ledger/ShelleySpec.hs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
nix build --accept-flake-config .#fine-types:exe:fine-types | ||
cd lib/cardano-ledger-specs/ | ||
fine_types="../../result/bin/fine-types" | ||
$fine_types check -i Shelley.fine | ||
$fine_types check -i Allegra.fine | ||
$fine_types check -i Mary.fine | ||
$fine_types check -i Alonzo.fine | ||
$fine_types check -i Babbage.fine |