Wire Sysio is a fork of Leap, a C++ implementation of the Antelope protocol. It contains blockchain node software and supporting tools for developers and node operators.
The master branch is the latest stable branch.
We currently support the following operating systems.
| Operating Systems |
|---|
| Ubuntu 22.04 Jammy |
| Ubuntu 20.04 Focal |
In the future, we plan to support downloading Debian packages directly from our release page, providing a more streamlined and convenient setup process. However, for the time being, installation requires building the software from source.
Finally, verify Wire Sysio was installed correctly:
nodeop --full-versionYou should see a semantic version string followed by a git commit hash with no errors. For example:
v3.1.2-0b64f879e3ebe2e4df09d2e62f1fc164cc1125d1
You will need to build on a supported operating system.
Requirements to build:
- C++20 compiler and standard library
- CMake 3.16+
- LLVM 7 - 11 - for Linux only
- newer versions do not work
- libcurl 7.40.0+
- git
- GMP
- Python 3
- python3-numpy
- zlib
If you don't have the wire-sysio repo cloned to your computer yet, open a terminal and navigate to the folder where you want to clone it:
cd ~/DownloadsClone this repo using either HTTPS:
git clone --recursive https://github.com/Wire-Network/wire-sysio.gitor SSH:
git clone --recursive git@github.com:Wire-Network/wire-sysio.gitUpon cloning it, you should have a local copy of wire-sysio, containing our source code.
Navigate into that folder:
cd wire-sysioSelect build instructions below based on OS.
⚠️ A Warning On Parallel Compilation Jobs (-jflag)⚠️
When building C/C++ software, often the build is performed in parallel via a command such asmake -j "$(nproc)"which uses all available CPU threads. However, be aware that some compilation units (*.cppfiles) in Wire Sysion will consume nearly 4GB of memory. Failures due to memory exhaustion will typically, but not always, manifest as compiler crashes. Using all available CPU threads may also prevent you from doing other things on your computer during compilation. For these reasons, consider reducing this value.
🐋 Docker and
sudo🐋
If you are in an Ubuntu docker container, omitsudofrom all commands because you run asrootby default. Most other docker containers also excludesudo, especially Debian-family containers. If your shell prompt is a hash tag (#), omitsudo.
Ubuntu 22.04 Jammy & Ubuntu 20.04 Focal
sudo apt-get update
sudo apt-get install -y \
build-essential \
cmake \
git \
libcurl4-openssl-dev \
libgmp-dev \
llvm-11-dev \
python3-numpy \
file \
zlib1g-devTo build, make sure you are in the root of the wire-sysio repo, then run the following commands:
mkdir -p build
cd build
## on Ubuntu 20, specify the gcc-10 compiler
cmake -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10 -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/usr/lib/llvm-11 ..
## on Ubuntu 22, the default gcc version is 11, using the default compiler is fine
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/usr/lib/llvm-11 ..
make -j "$(nproc)" packageNow you can optionally test your build, or install the *.deb binary packages, which will be in the root of your build directory.
Once you have built Wire Sysio and tested your build, you can install it on your system.
We recommend installing the binary package you just built. Navigate to your build directory in a terminal and run this command:
sudo apt-get update
sudo apt-get install -y ./wire-sysio[-_][0-9]*.debIt is also possible to install using make instead:
sudo make installWire Sysio supports the following test suites:
| Test Suite | Test Type | Test Size | Notes |
|---|---|---|---|
| Parallelizable tests | Unit tests | Small | |
| WASM spec tests | Unit tests | Small | Unit tests for our WASM runtime, each short but very CPU-intensive |
| Serial tests | Component/Integration | Medium | |
| Long-running tests | Integration | Medium-to-Large | Tests which take an extraordinarily long amount of time to run |
When building from source, we recommended running at least the parallelizable tests.
This test suite consists of any test that does not require shared resources, such as file descriptors, specific folders, or ports, and can therefore be run concurrently in different threads without side effects (hence, easily parallelized). These are mostly unit tests and small tests which complete in a short amount of time.
You can invoke them by running ctest from a terminal in your build directory and specifying the following arguments:
ctest -j "$(nproc)" -LE _testsThe WASM spec tests verify that our WASM execution engine is compliant with the web assembly standard. These are very small, very fast unit tests. However, there are over a thousand of them so the suite can take a little time to run. These tests are extremely CPU-intensive.
You can invoke them by running ctest from a terminal in your Wire Sysio build directory and specifying the following arguments:
ctest -j "$(nproc)" -L wasm_spec_testsWe have observed severe performance issues when multiple virtual machines are running this test suite on the same physical host at the same time, for example in a CICD system. This can be resolved by disabling hyperthreading on the host.
The serial test suite consists of medium component or integration tests that use specific paths, ports, rely on process names, or similar, and cannot be run concurrently with other tests. Serial tests can be sensitive to other software running on the same host and they may SIGKILL other nodeop processes. These tests take a moderate amount of time to complete, but we recommend running them.
You can invoke them by running ctest from a terminal in your build directory and specifying the following arguments:
ctest -L "nonparallelizable_tests"The long-running tests are medium-to-large integration tests that rely on shared resources and take a very long time to run.
You can invoke them by running ctest from a terminal in your build directory and specifying the following arguments:
ctest -L "long_running_tests"|
Wire Network Website | Twitter | LinkedIn © 2024 Wire Network. All rights reserved. |