content_title |
---|
Build EOSIO-Taurus from Source |
EOSIO-Taurus currently supports the following operating systems:
- Ubuntu 22.04
Note: It may be possible to install EOSIO-Taurus on other Unix-based operating systems. This is not officially supported, though.
Please check the dependencies document for the depended libraries.
The project makes use of cmake and it can be built by
git clone <repository URL>
cd taurus-node
git submodule update --init --recursive
mkdir -p build
cd build
cmake ..
make -j8
This repository contains many tests. To run the integration tests:
cd build
ctest . -LE '_tests$'