Skip to content

Commit

Permalink
Merge pull request #1021 from input-output-hk/update-experimental-ci
Browse files Browse the repository at this point in the history
Update experimental CI versions of libsodium and secp256k1
  • Loading branch information
ch1bo authored Aug 14, 2023
2 parents fb8a389 + 38bb0dc commit e12cfc6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/actions/setup_dev_ubuntu/install_libraries
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,25 @@ set -euxo pipefail
mkdir -p src
mkdir -p srv/bin
# Install libsodium
# Using revision from https://github.com/input-output-hk/iohk-nix
(
cd src
git clone https://github.com/input-output-hk/libsodium
cd libsodium
git checkout 66f017f1
git checkout dbb48cce5429cb6585c9034f002568964f1ce567
./autogen.sh
./configure --prefix="$(realpath $PWD/../../srv)"
make
make install
)

# Install secp256k1
# Using revision from https://github.com/input-output-hk/iohk-nix
(
cd src
git clone https://github.com/bitcoin-core/secp256k1
cd secp256k1
git checkout ac83be33
git checkout v0.3.2
./autogen.sh
./configure --enable-module-schnorrsig --enable-experimental --prefix="$(realpath $PWD/../../srv)"
make
Expand Down

0 comments on commit e12cfc6

Please sign in to comment.