chore: deprecated go-waku

This commit is contained in:
darshankabariya 2025-12-23 02:40:09 +05:30
parent c500c6d247
commit 4c6f87e62d
No known key found for this signature in database
GPG Key ID: 9A92CCD9899F0D22

View File

@ -45,7 +45,11 @@ jobs:
go mod vendor
- name: Build waku bindings
run: make -C waku build
run: |
export LMN_DIR=$(pwd)/vendor/logos-messaging-nim
export CGO_CFLAGS="-I${LMN_DIR}/library/"
export CGO_LDFLAGS="-L${LMN_DIR}/build/ -lwaku -Wl,-rpath,${LMN_DIR}/build/"
make -C waku build
- name: Increase ulimit
run: sudo sh -c "ulimit -n 8192"
@ -54,7 +58,7 @@ jobs:
run: |
set -euo pipefail
cd waku
export LMN_DIR=$(pwd)/../vendor/logos-messaging-nim
export LMN_DIR=$(pwd)/vendor/logos-messaging-nim
export CGO_CFLAGS="-I${LMN_DIR}/library/"
export CGO_LDFLAGS="-L${LMN_DIR}/build/ -lwaku -Wl,-rpath,${LMN_DIR}/build/"
go test -count=10 -p=1 -v -timeout=360m . | tee ../testlogs.log