Skip to content

Commit

Permalink
Update circle-ci for 0.12.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sammy007 committed Apr 22, 2018
1 parent 2ab620d commit 4245bd4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ jobs:
steps:
- run: |
apt-get -qq update
apt-get install -y -qq libboost-all-dev golang curl cmake build-essential libssl-dev git-core
apt-get install -y -qq libboost-all-dev golang curl cmake build-essential libssl-dev git-core libunbound-dev
- restore_cache:
keys:
- v1-monero-{{ arch }}-v0.11.1.0.tar.gz
- v1-monero-{{ arch }}-v0.12.0.0.tar.gz
- run: |
curl -L -o ~/v0.11.1.0.tar.gz https://github.com/monero-project/monero/archive/v0.11.1.0.tar.gz
tar xzvf ~/v0.11.1.0.tar.gz -C ~/
pushd ~/monero-0.11.1.0 && cmake -DBUILD_SHARED_LIBS=1 . && make && popd
curl -L -o ~/v0.12.0.0.tar.gz https://github.com/monero-project/monero/archive/v0.12.0.0.tar.gz
tar xzvf ~/v0.12.0.0.tar.gz -C ~/
pushd ~/monero-0.12.0.0 && cmake -DBUILD_SHARED_LIBS=1 . && make && popd
- save_cache:
key: v1-monero-{{ arch }}-v0.11.1.0.tar.gz
key: v1-monero-{{ arch }}-v0.12.0.0.tar.gz
paths:
- ~/monero-0.11.1.0
- ~/monero-0.12.0.0
- checkout
- run:
name: Compile
environment:
- MONERO_DIR: "~/monero-0.11.1.0"
- MONERO_DIR: "~/monero-0.12.0.0"
command: |
cmake .
make
Expand Down

0 comments on commit 4245bd4

Please sign in to comment.