The code in master branch is under development. The latest release for each network can be found in the Releases section. You can switch to the corresponding tag and build the application.
It is only possible to create deb and fat jar packages.
For Ubuntu/Debian:
echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
sudo apt-get update
sudo apt-get install sbt
You can install sbt on Mac OS X using Homebrew.
Clone this repo and execute
sbt packageAll
.deb and .jar packages will be in /package folder. To build testnet packages use
sbt -Dnetwork=testnet packageAll
Execute
sbt test
Note
If you prefer to work with SBT in the interactive mode, open it with settings:
SBT_OPTS="${SBT_OPTS} -Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled" sbt
to solve the Metaspace error
problem.