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 pact as a dependency #186

Merged
merged 9 commits into from
May 1, 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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ jobs:
dist-newstyle
key: ${{ matrix.os }}-${{ matrix.ghc }}-4-cabal

# System dependencies
- name: Install liblzma
run: brew install xz # xz package contains liblzma
if: startsWith(matrix.os, 'macOS')

- name: Install postgresql
run: brew install postgresql # needed by libpq
if: startsWith(matrix.os, 'macOS')

# Build
- name: Update package database
run: cabal update
Expand Down
36 changes: 4 additions & 32 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,53 +1,25 @@
packages: haskell-src/chainweb-data.cabal
with-compiler: ghc-9.2.8

package aeson
flags: +cffi

source-repository-package
type: git
location: https://github.com/kadena-io/pact.git
tag: e5c922664fb4df53e3b8e2c48618d71b3ef612ad
--sha256: sha256-t1p+Zd5I/mW2Aggi4xMRl0wj6k3ztsgzydvNkBachFA=
index-state: 2024-02-01T00:00:00Z

source-repository-package
type: git
location: https://github.com/kadena-io/chainweb-api.git
tag: 1b2de025cfdc09698bfb1ec3807cd85405d6a339
--sha256: sha256-06jvD1kmkmthcRkyWhVLTbytwabghInxqXQD/Lm7kbA=

source-repository-package
type: git
location: https://github.com/kadena-io/pact-json
tag: e43073d0b8d89d9b300980913b842f4be339846d
--sha256: sha256-ZWbAId0JBaxDsYhwcYUyw04sjYstXyosSCenzOvUxsQ=

source-repository-package
type: git
location: https://github.com/kadena-io/thyme.git
tag: 6ee9fcb026ebdb49b810802a981d166680d867c9
--sha256: sha256-DqGIoPGBg8py044Xa7l/Y09K+cKGFwlxONHoZRJyzCU=

package vault
documentation: false

write-ghc-environment-files: never

package pact
ghc-options: -Wwarn
optimization: True
flags: -build-tool

constraints: sbv <10
constraints: http2 <4.2

allow-newer: beam-migrate:pqueue
allow-newer: beam-migrate:aeson
allow-newer: beam-core:aeson
allow-newer: streaming-events:*
allow-newer: postgresql-simple-migration:*
allow-newer: beam-postgres:*
-- allow-newer: *:aeson
allow-newer: *:vector

allow-older: pact:base
allow-older: pact:mtl
allow-older: pact:text
allow-older: pact-json:text
Loading
Loading