2023-03-31 17:59:45 -04:00
|
|
|
This project is used in https://github.com/waku-org/go-zerokit-rln to bypass the 500mb limit for go modules
|
2023-12-15 08:38:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
# How to build
|
2023-03-31 17:59:45 -04:00
|
|
|
```
|
|
|
|
|
git clone https://github.com/waku-org/go-zerokit-rln_apple
|
|
|
|
|
cd go-zerokit-rln_apple
|
|
|
|
|
git submodule init
|
|
|
|
|
git submodule update --recursive
|
|
|
|
|
make
|
|
|
|
|
```
|
2023-12-15 08:38:51 -04:00
|
|
|
|
|
|
|
|
# Updating zerokit
|
|
|
|
|
```bash
|
|
|
|
|
export ZEROKIT_COMMIT=master # Use a commit, branch or tag
|
|
|
|
|
cd zerokit
|
|
|
|
|
git pull
|
|
|
|
|
git checkout ${ZEROKIT_COMMIT}
|
|
|
|
|
cd ..
|
|
|
|
|
make
|
|
|
|
|
git add zerokit
|
|
|
|
|
git add libs/*/librln.a
|
|
|
|
|
git commit -m "chore: bump zerokit"
|
|
|
|
|
git push
|
|
|
|
|
```
|