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

WIP: UTXO-HD for node 8.9.1 #494

Closed
wants to merge 20 commits into from
Closed
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
5 changes: 0 additions & 5 deletions .github/workflows/cabal.project.local.ci.Linux

This file was deleted.

This file was deleted.

15 changes: 14 additions & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

env:
# Modify this value to "invalidate" the cabal cache.
CABAL_CACHE_VERSION: "2024-02-15"
CABAL_CACHE_VERSION: "2024-04-05-2"

concurrency:
group: >
Expand Down Expand Up @@ -54,6 +54,19 @@ jobs:
with:
use-sodium-vrf: true # default is true

- name: Linux install lmdb
if: matrix.os == 'ubuntu-latest'
run: sudo apt install liblmdb-dev

- name: Mac install lmdb
if: matrix.os == 'macos-latest'
run: brew install lmdb

- name: Windows install lmdb
if: matrix.os == 'windows-latest'
shell: 'C:/msys64/usr/bin/bash.exe -e {0}'
run: /usr/bin/pacman --noconfirm -S mingw-w64-x86_64-lmdb

- uses: actions/checkout@v3

- name: Cabal update
Expand Down
26 changes: 20 additions & 6 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,26 @@ repository cardano-haskell-packages
-- See CONTRIBUTING for information about these, including some Nix commands
-- you need to run if you change them
index-state:
, hackage.haskell.org 2024-03-18T10:10:55Z
, cardano-haskell-packages 2024-03-15T18:07:40Z
, hackage.haskell.org 2024-03-25T10:39:21Z
, cardano-haskell-packages 2024-05-24T09:29:56Z

packages:
cardano-api
cardano-api-gen

package cardano-api
ghc-options: -Werror

package cardano-api-gen
program-options
ghc-options: -Werror

package cryptonite
-- Using RDRAND instead of /dev/urandom as an entropy source for key
-- generation is dubious. Set the flag so we use /dev/urandom by default.
flags: -support_rdrand

-- bitvecs simd c++ dependencies break our windows build (for now)
if os(windows)
package bitvec
flags: -simd

tests: True

test-show-details: direct
Expand All @@ -42,3 +44,15 @@ write-ghc-environment-files: always
-- Do NOT add more source-repository-package stanzas here unless they are strictly
-- temporary! Please read the section in CONTRIBUTING about updating dependencies.

source-repository-package
type: git
location: https://github.com/IntersectMBO/ouroboros-consensus
tag: 858fbd77bca6c423a44feef41e31adaf0400e267
--sha256: 0bxxvw96nsg22pmxxlf1fzr7g09xi6b60frvjngrwidlsv31nf2q
subdir:
ouroboros-consensus
ouroboros-consensus-cardano
ouroboros-consensus-diffusion
ouroboros-consensus-protocol
sop-extras
strict-sop-core
1 change: 1 addition & 0 deletions cardano-api/cardano-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ library internal
, safe-exceptions
, scientific
, serialise
, singletons
, small-steps ^>= 1.0
, sop-core
, sop-extras
Expand Down
Loading
Loading