Skip to content

Commit

Permalink
Merge branch 'feat-rollup-relayer-add-zstd-compression' into curie-en…
Browse files Browse the repository at this point in the history
…v1-sampling
  • Loading branch information
colinlyguo authored May 25, 2024
2 parents 83ecd99 + eb8e468 commit 80aebfa
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ make dev_docker
Run the tests using the following commands:

```bash
export LIBSCROLL_ZSTD_VERSION=v0.0.0-rc0-ubuntu20.04
export LIBSCROLL_ZSTD_VERSION=v0.0.0-rc1-ubuntu20.04
export SCROLL_LIB_PATH=/scroll/lib

sudo mkdir -p $SCROLL_LIB_PATH
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/event_watcher.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG LIBSCROLL_ZSTD_VERSION=v0.0.0-rc0-ubuntu20.04
ARG LIBSCROLL_ZSTD_VERSION=v0.0.0-rc1-ubuntu20.04
ARG SCROLL_LIB_PATH=/scroll/lib

# Download Go dependencies
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/gas_oracle.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG LIBSCROLL_ZSTD_VERSION=v0.0.0-rc0-ubuntu20.04
ARG LIBSCROLL_ZSTD_VERSION=v0.0.0-rc1-ubuntu20.04
ARG SCROLL_LIB_PATH=/scroll/lib

# Download Go dependencies
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfiles/rollup_relayer.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG LIBSCROLL_ZSTD_VERSION=v0.0.0-rc0-ubuntu20.04
ARG LIBSCROLL_ZSTD_VERSION=v0.0.0-rc1-ubuntu20.04
ARG SCROLL_LIB_PATH=/scroll/lib

# Download Go dependencies
Expand Down
6 changes: 3 additions & 3 deletions rollup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

IMAGE_VERSION=latest
REPO_ROOT_DIR=./..
LIBSCROLL_ZSTD_VERSION=v0.0.0-rc0-ubuntu20.04
LIBSCROLL_ZSTD_VERSION=v0.0.0-rc1-ubuntu20.04
SCROLL_LIB_PATH=/scroll/lib

mock_abi:
Expand All @@ -11,8 +11,8 @@ mock_abi:

libzstd:
sudo mkdir -p $(SCROLL_LIB_PATH)/
sudo wget -O $(SCROLL_LIB_PATH)/libzktrie.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libzktrie.so
sudo wget -O $(SCROLL_LIB_PATH)/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libscroll_zstd.so
sudo wget -O $(SCROLL_LIB_PATH)/libzktrie.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc1-ubuntu20.04/libzktrie.so
sudo wget -O $(SCROLL_LIB_PATH)/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc1-ubuntu20.04/libscroll_zstd.so

rollup_bins: libzstd ## Builds the Rollup bins.
export LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(SCROLL_LIB_PATH) && \
Expand Down
2 changes: 1 addition & 1 deletion rollup/run_test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Download .so files
export LIBSCROLL_ZSTD_VERSION=v0.0.0-rc0-ubuntu20.04
export LIBSCROLL_ZSTD_VERSION=v0.0.0-rc1-ubuntu20.04
export SCROLL_LIB_PATH=/scroll/lib

sudo mkdir -p $SCROLL_LIB_PATH
Expand Down

0 comments on commit 80aebfa

Please sign in to comment.