mirror of
https://github.com/waku-org/nwaku.git
synced 2025-02-15 00:16:48 +00:00
deploy: 4f9a83866869834dee0e6ae8c6beb1649cc7d6e9
This commit is contained in:
parent
c42210ce09
commit
59a453b2b7
@ -1 +1 @@
|
||||
1612434778
|
||||
1612467000
|
20
Makefile
20
Makefile
@ -105,9 +105,27 @@ example2: | build deps
|
||||
echo -e $(BUILD_MSG) "build/$@" && \
|
||||
$(ENV_SCRIPT) nim example2 $(NIM_PARAMS) waku.nims
|
||||
|
||||
test2: | build deps
|
||||
# detecting the os
|
||||
ifeq ($(OS),Windows_NT) # is Windows_NT on XP, 2000, 7, Vista, 10...
|
||||
detected_OS := Windows
|
||||
else ifeq ($(strip $(shell uname)),Darwin)
|
||||
detected_OS := macOS
|
||||
else
|
||||
# e.g. Linux
|
||||
detected_OS := $(strip $(shell uname))
|
||||
endif
|
||||
|
||||
installganache:
|
||||
npm install ganache-cli; npx ganache-cli -p 8540 -g 0 -l 3000000000000&
|
||||
|
||||
|
||||
test2: | build deps installganache
|
||||
echo -e $(BUILD_MSG) "build/$@" && \
|
||||
$(ENV_SCRIPT) nim test2 $(NIM_PARAMS) waku.nims
|
||||
# the following command (pkill -f ganache-cli) attempts to kill ganache-cli process on macos
|
||||
# if we do not kill the process then it would hang there and causes issue in GitHub Actions macos job (the job never finsihes)
|
||||
(([[ $(detected_OS) = macOS ]] && \
|
||||
pkill -f ganache-cli) || true)
|
||||
|
||||
scripts2: | build deps wakunode2
|
||||
echo -e $(BUILD_MSG) "build/$@" && \
|
||||
|
@ -11,5 +11,5 @@ import
|
||||
./v2/test_message_store,
|
||||
./v2/test_jsonrpc_waku,
|
||||
./v2/test_peer_manager,
|
||||
./v2/test_web3 # will remove it when rln-relay tests get added
|
||||
# TODO ./v2/test_waku_rln_relay
|
||||
./v2/test_web3, # TODO remove it when rln-relay tests get finalized
|
||||
./v2/test_waku_rln_relay
|
||||
|
File diff suppressed because one or more lines are too long
@ -10,11 +10,11 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
## Platform. ##
|
||||
## --------- ##
|
||||
|
||||
hostname = fv-az274-984
|
||||
hostname = fv-az16-738
|
||||
uname -m = x86_64
|
||||
uname -r = 5.4.0-1036-azure
|
||||
uname -r = 5.4.0-1039-azure
|
||||
uname -s = Linux
|
||||
uname -v = #38~18.04.1-Ubuntu SMP Wed Jan 6 18:26:30 UTC 2021
|
||||
uname -v = #41~18.04.1-Ubuntu SMP Mon Jan 18 14:00:01 UTC 2021
|
||||
|
||||
/usr/bin/uname -p = unknown
|
||||
/bin/uname -X = unknown
|
||||
@ -841,7 +841,7 @@ configure:12482: $? = 0
|
||||
configure:12482: result: yes
|
||||
configure:12499: checking for getexecname
|
||||
configure:12499: gcc -o conftest -g -O3 -std=gnu11 -pipe -Wall -Wextra -fPIC conftest.c >&5
|
||||
/tmp/ccUrLXiI.o: In function `main':
|
||||
/tmp/ccC1igVd.o: In function `main':
|
||||
/home/runner/work/nim-waku/nim-waku/vendor/nim-libbacktrace/vendor/libbacktrace-upstream/conftest.c:73: undefined reference to `getexecname'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12499: $? = 1
|
||||
@ -1134,7 +1134,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on fv-az274-984
|
||||
on fv-az16-738
|
||||
|
||||
config.status:1150: creating Makefile
|
||||
config.status:1150: creating backtrace-supported.h
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
# libtool - Provide generalized library-building support services.
|
||||
# Generated automatically by config.status (libbacktrace) version-unused
|
||||
# Libtool was configured on host fv-az274-984:
|
||||
# Libtool was configured on host fv-az16-738:
|
||||
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
||||
#
|
||||
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
|
||||
|
Loading…
x
Reference in New Issue
Block a user