Skip to content

Commit

Permalink
feat(rln-relay): fetch release from zerokit ci, or build (#1603)
Browse files Browse the repository at this point in the history
* feat(rln-relay): fetch release from zerokit ci, or build

* fix(build_rln): shellcheck, move to scripts dir
  • Loading branch information
rymnc committed Mar 21, 2023
1 parent be446b9 commit 179be68
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ node_modules/
# RLN / keystore
rlnCredentials.txt
rlnKeystore.json
*.tar.gz

# Nimbus Build System
nimbus-build-system.paths
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ endif

### RLN

LIBRLN_BUILDDIR := $(CURDIR)/vendor/zerokit/target/release
LIBRLN_BUILDDIR := $(CURDIR)/vendor/zerokit

ifeq ($(OS),Windows_NT)
LIBRLN_FILE := rln.lib
Expand All @@ -115,12 +115,12 @@ endif

$(LIBRLN_BUILDDIR)/$(LIBRLN_FILE):
echo -e $(BUILD_MSG) "$@" && \
cargo build --manifest-path vendor/zerokit/rln/Cargo.toml --release
./scripts/build_rln.sh $(LIBRLN_BUILDDIR)

ifneq ($(RLN), true)
librln: ; # noop
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)
endif

Expand Down
31 changes: 31 additions & 0 deletions scripts/build_rln.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 179be68

Please sign in to comment.