Skip to content

bearcubsvet/wire-sysio

 
 

Repository files navigation

Wire Sysio

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.

Branches

The master branch is the latest stable branch.

Supported Operating Systems

We currently support the following operating systems.

Operating Systems
Ubuntu 22.04 Jammy
Ubuntu 20.04 Focal

Installation

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-version

You should see a semantic version string followed by a git commit hash with no errors. For example:

v3.1.2-0b64f879e3ebe2e4df09d2e62f1fc164cc1125d1

Building from source

Prerequisites

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

Step 1 - Clone

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 ~/Downloads

Clone this repo using either HTTPS:

git clone --recursive https://github.com/Wire-Network/wire-sysio.git

or SSH:

git clone --recursive git@github.com:Wire-Network/wire-sysio.git

Upon cloning it, you should have a local copy of wire-sysio, containing our source code.

Navigate into that folder:

cd wire-sysio

Step 2 - Build

Select build instructions below based on OS.

⚠️ A Warning On Parallel Compilation Jobs (-j flag) ⚠️
When building C/C++ software, often the build is performed in parallel via a command such as make -j "$(nproc)" which uses all available CPU threads. However, be aware that some compilation units (*.cpp files) 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, omit sudo from all commands because you run as root by default. Most other docker containers also exclude sudo, especially Debian-family containers. If your shell prompt is a hash tag (#), omit sudo.

Build

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-dev

To 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)" package

Now you can optionally test your build, or install the *.deb binary packages, which will be in the root of your build directory.

Step 3 - Install

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]*.deb

It is also possible to install using make instead:

sudo make install

Step 4 - Test

Wire 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.

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 _tests

WASM Spec Tests

The 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_tests

We 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.

Serial Tests

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"

Long-Running 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 Wire Network
Website | Twitter | LinkedIn
© 2024 Wire Network. All rights reserved.

About

Wire's core software for developing and deploying high-performance blockchain-based applications.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 87.4%
  • Python 9.6%
  • CMake 1.4%
  • HTML 0.6%
  • C 0.4%
  • Shell 0.3%
  • Other 0.3%