Skip to content

Commit

Permalink
Update circle-ci for 0.13.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sammy007 committed Oct 11, 2018
1 parent 4401166 commit 0bc8be6
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,24 @@ jobs:
steps:
- run: |
apt-get -qq update
apt-get install -y -qq libboost-all-dev golang curl cmake build-essential libssl-dev git-core libzmq3-dev
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.12.1.0.tar.gz
- v1-monero-{{ arch }}-v0.13.0.2.tar.gz
- run: |
git clone --recursive --branch v0.12.1.0 https://github.com/monero-project/monero.git ~/monero-0.12.1.0
pushd ~/monero-0.12.1.0 && cmake -DBUILD_SHARED_LIBS=1 . && make && popd
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.12.1.0.tar.gz
key: v1-monero-{{ arch }}-v0.13.0.2.tar.gz
paths:
- ~/monero-0.12.1.0
- ~/monero-0.13.0.2
- checkout
- run:
name: Compile
environment:
- MONERO_DIR: "~/monero-0.12.1.0"
- MONERO_DIR: "~/monero-0.13.0.2"
command: |
cmake .
make
Expand Down

0 comments on commit 0bc8be6

Please sign in to comment.