This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18:57:26.623 [main] INFO c.r.n.configuration.Configuration$ - Using configuration file: /var/lib/rnode/rnode.toml | |
18:57:28.014 [main] WARN c.r.n.configuration.Configuration$ - Configuration file /var/lib/rnode/rnode.toml not found | |
18:57:28.762 [main] INFO c.r.n.configuration.Configuration$ - Starting with profile docker | |
INFO - trying to open ports using UPnP.... | |
INFO - No gateway devices found | |
INFO - No need to open any port | |
Using data_dir: /var/lib/rnode | |
No certificate found at path /var/lib/rnode/node.certificate.pem | |
Generating a X.509 certificate for the node | |
Generating a PEM secret key for the node |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
● rnode.service - RChain Node | |
Loaded: loaded (/etc/systemd/system/rnode.service; enabled; vendor preset: enabled) | |
Active: active (running) since Wed 2018-09-12 20:50:43 UTC; 15min ago | |
Main PID: 12430 (java) | |
Tasks: 4080 (limit: 4915) | |
CGroup: /system.slice/rnode.service | |
└─12430 java -cp /usr/share/rnode/lib/coop.rchain.rnode-0.6.4.jar:/usr/share/rnode/lib/coop.rchain.casper-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.block-storage-0.0.1-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.shared-0.1.jar:/usr/share/rnode/lib/coop.rchain.models-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.rspace-0.2.1-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.crypto-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.comm-0.1.jar:/usr/share/rnode/lib/coop.rchain.rholang-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.rholang-proto-build-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/java-cup-11b-runtime.jar:/usr/share/rnode/lib/JLex.jar:/usr/share/rnode/lib/java-cup-11b.jar:/usr/share/rnode/lib/o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
● rnode.service - RChain Node | |
Loaded: loaded (/etc/systemd/system/rnode.service; enabled; vendor preset: enabled) | |
Active: active (running) since Wed 2018-09-12 21:25:48 UTC; 1min 9s ago | |
Main PID: 18748 (java) | |
Tasks: 118 (limit: 4915) | |
CGroup: /system.slice/rnode.service | |
└─18748 java -cp /usr/share/rnode/lib/coop.rchain.rnode-0.6.4.jar:/usr/share/rnode/lib/coop.rchain.casper-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.block-storage-0.0.1-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.shared-0.1.jar:/usr/share/rnode/lib/coop.rchain.models-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.rspace-0.2.1-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.crypto-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.comm-0.1.jar:/usr/share/rnode/lib/coop.rchain.rholang-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/coop.rchain.rholang-proto-build-0.1.0-SNAPSHOT.jar:/usr/share/rnode/lib/java-cup-11b-runtime.jar:/usr/share/rnode/lib/JLex.jar:/usr/share/rnode/lib/java-cup-11b.jar:/usr/share/rnode/lib/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8c47a93168b9087382fa32e4fb7608f68a53a15a05e2d3f4dc932ea20a9b40ef 153 | |
f4925f2ad782a8b03cbb9805aa1a9182ff9a728ab8158d5ad8110f20669f4971 253 | |
8cf6be9ae145ea5f33a0e94f3b053bd64aefc73203fdcbf5b6979c22f4c28e0c 6 | |
47956750a388a6bd98a84e0db436cf55a422007f408d8bff01a83460650ad5a0 79 | |
8bb03c4ece1cec9062c00686b45845fcb3f10e8a48148df1073e626fe1d424cb 105 | |
7cdf83b6ee5ad21799bdc1b7caf614e31d42175f6418f44a278f850fa0c7e455 222 | |
a5acdd6a7803df06393835136acffa4b56d45c49e8fb747208123264e22a76ff 113 | |
80c540ba7b69280fe1f982aba828c6b65198ee1b5f96989e9822071e1aa0260a 151 | |
56910701367ef32447512f4238928dda8f6a13a319895d3144d3c2d51f933e55 256 | |
cb8bc278c9723f4110892231218392fd79cde4935b79663fc4aab73bda123f98 35 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -ex | |
PROJECT_DIR=/home/workspace/rchain | |
CACHE_DIR=/var/cache/rchain-build | |
git clone https://github.com/rchain/rchain $PROJECT_DIR | |
docker run -it \ | |
-v $PROJECT_DIR:/home/workspace/rchain \ | |
-v $CACHE_DIR:/var/cache/rchain-build \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ docker run -it -v /home/workspace/rchain:/home/workspace/rchain -v /var/cache/rchain-build:/var/cache/rchain-build rchain/buildenv:latest bash -c ' | |
set -e | |
cd | |
ln -s /var/cache/rchain-build/.sbt | |
ln -s /var/cache/rchain-build/.ivy2 | |
cd /home/workspace/rchain | |
sbt '\''project blockStorage'\'' '\''testOnly *InMemBlockStoreTest'\'' | |
' | |
[info] Loading settings from plugins.sbt ... | |
[info] Loading project definition from /home/workspace/rchain/project |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12250 22:24:11 futex(0x7f8fa0094d0c, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12269 22:24:11 futex(0x7ff42c040578, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12249 22:24:11 futex(0x7ff42c0a007c, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12221 22:24:11 futex(0x7f8fc400903c, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12220 22:24:11 futex(0x7ff3d8007138, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12219 22:24:11 futex(0x7f8fc400caac, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12218 22:24:11 futex(0x7ff39400ac18, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12217 22:24:11 futex(0x7f8fbc0088b8, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12216 22:24:11 futex(0x7ff394002c0c, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> | |
12212 22:24:11 futex(0x7ff3dc0059c8, FUTEX_WAIT_PRIVATE, 0, NULL <unfinished ...> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CI=drone | |
CI_BUILD_CREATED=1538244194 | |
CI_BUILD_EVENT=pull_request | |
CI_BUILD_FINISHED=1538244196 | |
CI_BUILD_LINK=https://github.com/rchain-drone/droneci-test/pull/2 | |
CI_BUILD_NUMBER=2 | |
CI_BUILD_STARTED=1538244194 | |
CI_BUILD_STATUS=success | |
CI_COMMIT_AUTHOR=woky | |
CI_COMMIT_AUTHOR_AVATAR=https://avatars0.githubusercontent.com/u/620147?v=4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CI=drone | |
CI_BUILD_CREATED=1538244194 | |
CI_BUILD_EVENT=pull_request | |
CI_BUILD_FINISHED=1538244196 | |
CI_BUILD_LINK=https://github.com/rchain-drone/droneci-test/pull/2 | |
CI_BUILD_NUMBER=2 | |
CI_BUILD_STARTED=1538244194 | |
CI_BUILD_STATUS=success | |
CI_COMMIT_AUTHOR=woky | |
CI_COMMIT_AUTHOR_AVATAR=https://avatars0.githubusercontent.com/u/620147?v=4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UID PID PPID LWP C NLWP STIME TTY TIME CMD | |
root 22001 21890 22001 0 107 22:37 ? 00:00:00 java -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxMetaspaceSize=256m -jar /usr/share/sbt/bin/sbt-launch.jar test it:test | |
root 22001 21890 22002 0 107 22:37 ? 00:00:08 java -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxMetaspaceSize=256m -jar /usr/share/sbt/bin/sbt-launch.jar test it:test | |
root 22001 21890 22003 0 107 22:37 ? 00:00:08 java -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxMetaspaceSize=256m -jar /usr/share/sbt/bin/sbt-launch.jar test it:test | |
root 22001 21890 22004 0 107 22:37 ? 00:00:07 java -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxMetaspaceSize=256m -jar /usr/share/sbt/bin/sbt-launch.jar test it:test | |
root 22001 21890 22005 0 107 22:37 ? 00:00:07 java -Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxMetaspaceSize=256m -jar /usr/share/sbt/bin/sbt-launch.jar test it:t |