Kevacoin stratum server for solo-mining
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
version: 2
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
docker:
|
|
|
|
- image: ubuntu:16.04
|
|
|
|
parallelism: 3
|
|
|
|
resource_class: large
|
|
|
|
working_directory: ~/monero-stratum
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
steps:
|
|
|
|
- run: |
|
|
|
|
apt-get -qq update
|
|
|
|
apt-get install -y -qq libboost-all-dev curl cmake build-essential libssl-dev git-core libzmq3-dev libsodium-dev
|
|
|
|
curl -O https://dl.google.com/go/go1.11.1.linux-amd64.tar.gz && tar xzvf go1.11.1.linux-amd64.tar.gz
|
|
|
|
echo 'export PATH=~/go/bin:$PATH' >> ~/.bashrc
|
|
|
|
- restore_cache:
|
|
|
|
keys:
|
|
|
|
- v1-monero-{{ arch }}-v0.13.0.2.tar.gz
|
|
|
|
- run: |
|
|
|
|
git clone --recursive --branch v0.13.0.2 https://github.com/monero-project/monero.git ~/monero-0.13.0.2
|
|
|
|
pushd ~/monero-0.13.0.2 && cmake -DBUILD_SHARED_LIBS=1 . && make && popd
|
|
|
|
- save_cache:
|
|
|
|
key: v1-monero-{{ arch }}-v0.13.0.2.tar.gz
|
|
|
|
paths:
|
|
|
|
- ~/monero-0.13.0.2
|
|
|
|
- checkout
|
|
|
|
- run:
|
|
|
|
name: Compile
|
|
|
|
environment:
|
|
|
|
- MONERO_DIR: "~/monero-0.13.0.2"
|
|
|
|
command: |
|
|
|
|
cmake .
|
|
|
|
make
|
|
|
|
- run:
|
|
|
|
name: Test
|
|
|
|
command: build/env.sh go test -v ./...
|