Skip to content
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

Remove liquid-patform #2267

Merged
merged 6 commits into from
Feb 5, 2024
Merged
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
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ commands:
echo 'export PATH=~/.ghcup/bin:$PATH' >> $BASH_ENV
<< parameters.cabal_update_command >>
cabal v2-clean
cabal v2-build --project-file << parameters.project_file >> --flag devel -j --enable-tests liquidhaskell-boot liquid-prelude liquid-parallel liquid-vector liquid-platform test-driver
cabal v2-build --project-file << parameters.project_file >> --flag devel -j --enable-tests liquidhaskell-boot liquid-prelude liquid-parallel liquid-vector test-driver
- save_cache:
key: cabal-cache-v3-{{ checksum "liquidhaskell-boot/liquidhaskell-boot.cabal" }}-{{ checksum "liquidhaskell.cabal" }}-{{ checksum "<< parameters.project_file >>" }}-{{ checksum "liquid-fixpoint-commit" }}
paths:
Expand Down Expand Up @@ -155,7 +155,6 @@ jobs:
- stack_build_and_test:
stack_yaml_file: "stack.yaml"
extra_build_flags: "--flag liquidhaskell-boot:devel"
extra_test_flags: " liquid-platform:liquidhaskell "
cabal_900:
machine:
image: ubuntu-2004:202107-02
Expand Down
90 changes: 0 additions & 90 deletions INSTALL.md

This file was deleted.

12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@ If you have further questions or you just need help, you can always reach out on

For those diving into the implementation of LiquidHaskell, here are a few tips:

## Running the pluging on individual files

```
stack build liquidhaskell
stack exec ghc -- -fplugin=LiquidHaskell FILE.hs
```

```
cabal build liquidhaskell
cabal exec ghc -- -fplugin=LiquidHaskell FILE.hs
```

## Fast (re)compilation

When working on the `liquidhaskell-boot` library, usually all we want is to make changes and quickly recompile
Expand Down
4 changes: 0 additions & 4 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ packages: .
./liquid-parallel
./liquid-prelude
./liquid-vector
./liquid-platform
./liquidhaskell-boot
./tests
./tests/benchmarks/popl18/lib
Expand Down Expand Up @@ -33,6 +32,3 @@ package liquidhaskell

package liquidhaskell-boot
ghc-options: -j

package liquid-platform
flags: +devel
30 changes: 0 additions & 30 deletions liquid-platform/LICENSE

This file was deleted.

38 changes: 0 additions & 38 deletions liquid-platform/liquid-platform.cabal

This file was deleted.

92 changes: 0 additions & 92 deletions liquid-platform/src/Liquid.hs

This file was deleted.

49 changes: 0 additions & 49 deletions liquidhaskell-boot/include/CoreToLogic.lg

This file was deleted.

5 changes: 2 additions & 3 deletions liquidhaskell-boot/liquidhaskell-boot.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ homepage: https://github.com/ucsd-progsys/liquidhaskell
build-type: Simple
tested-with: GHC == 9.6.3

data-files: include/CoreToLogic.lg
syntax/liquid.css

source-repository head
type: git
location: https://github.com/ucsd-progsys/liquidhaskell/
Expand Down Expand Up @@ -47,6 +44,7 @@ library
Language.Haskell.Liquid.Bare.Slice
Language.Haskell.Liquid.Bare.Typeclass
Language.Haskell.Liquid.Bare.Elaborate
Language.Haskell.Liquid.CSS
Language.Haskell.Liquid.Constraint.Constraint
Language.Haskell.Liquid.Constraint.Env
Language.Haskell.Liquid.Constraint.Fresh
Expand All @@ -63,6 +61,7 @@ library
Liquid.GHC.API
Liquid.GHC.API.Extra
Liquid.GHC.API.StableModule
Language.Haskell.Liquid.GHC.CoreToLogic
Language.Haskell.Liquid.GHC.Interface
Language.Haskell.Liquid.GHC.Logging
Language.Haskell.Liquid.GHC.Misc
Expand Down
Loading
Loading