mirror of https://github.com/waku-org/nwaku.git
feat(rln-relay): fetch release from zerokit ci, or build (#1603)
* feat(rln-relay): fetch release from zerokit ci, or build * fix(build_rln): shellcheck, move to scripts dir
This commit is contained in:
parent
be446b9892
commit
179be681c4
|
@ -41,6 +41,7 @@ node_modules/
|
||||||
# RLN / keystore
|
# RLN / keystore
|
||||||
rlnCredentials.txt
|
rlnCredentials.txt
|
||||||
rlnKeystore.json
|
rlnKeystore.json
|
||||||
|
*.tar.gz
|
||||||
|
|
||||||
# Nimbus Build System
|
# Nimbus Build System
|
||||||
nimbus-build-system.paths
|
nimbus-build-system.paths
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -105,7 +105,7 @@ endif
|
||||||
|
|
||||||
### RLN
|
### RLN
|
||||||
|
|
||||||
LIBRLN_BUILDDIR := $(CURDIR)/vendor/zerokit/target/release
|
LIBRLN_BUILDDIR := $(CURDIR)/vendor/zerokit
|
||||||
|
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
LIBRLN_FILE := rln.lib
|
LIBRLN_FILE := rln.lib
|
||||||
|
@ -115,12 +115,12 @@ endif
|
||||||
|
|
||||||
$(LIBRLN_BUILDDIR)/$(LIBRLN_FILE):
|
$(LIBRLN_BUILDDIR)/$(LIBRLN_FILE):
|
||||||
echo -e $(BUILD_MSG) "$@" && \
|
echo -e $(BUILD_MSG) "$@" && \
|
||||||
cargo build --manifest-path vendor/zerokit/rln/Cargo.toml --release
|
./scripts/build_rln.sh $(LIBRLN_BUILDDIR)
|
||||||
|
|
||||||
ifneq ($(RLN), true)
|
ifneq ($(RLN), true)
|
||||||
librln: ; # noop
|
librln: ; # noop
|
||||||
else
|
else
|
||||||
EXPERIMENTAL_PARAMS += -d:rln --passL:$(LIBRLN_BUILDDIR)/$(LIBRLN_FILE) --passL:-lm
|
EXPERIMENTAL_PARAMS += -d:rln --passL:$(LIBRLN_FILE) --passL:-lm
|
||||||
librln: $(LIBRLN_BUILDDIR)/$(LIBRLN_FILE)
|
librln: $(LIBRLN_BUILDDIR)/$(LIBRLN_FILE)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# This script is used to build the rln library for the current platform, or download it from the
|
||||||
|
# release page if it is available.
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# first argument is the build directory
|
||||||
|
build_dir=$1
|
||||||
|
|
||||||
|
if [[ -z "$build_dir" ]]; then
|
||||||
|
echo "No build directory specified"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Get the host triplet
|
||||||
|
host_triplet=$(rustup show | grep "Default host: " | cut -d' ' -f3)
|
||||||
|
|
||||||
|
# Download the prebuilt rln library if it is available
|
||||||
|
if curl --silent --fail-with-body -L "https://github.com/vacp2p/zerokit/releases/download/nightly/$host_triplet-rln.tar.gz" >> "$host_triplet-rln.tar.gz"
|
||||||
|
then
|
||||||
|
echo "Downloaded $host_triplet-rln.tar.gz"
|
||||||
|
tar -xzf "$host_triplet-rln.tar.gz"
|
||||||
|
mv release/librln.a .
|
||||||
|
rm -rf "$host_triplet-rln.tar.gz" release
|
||||||
|
else
|
||||||
|
echo "Failed to download $host_triplet-rln.tar.gz"
|
||||||
|
# Build rln instead
|
||||||
|
cargo build --release --manifest-path "$build_dir/rln/Cargo.toml"
|
||||||
|
cp "$build_dir/rln/target/release/librln.a" .
|
||||||
|
fi
|
Loading…
Reference in New Issue