mirror of https://github.com/nucypher/nucypher.git
Add circleci config so far
parent
29144ad62a
commit
d6ca9af451
|
@ -0,0 +1,24 @@
|
|||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
working_directory: ~/nucypher-build
|
||||
docker:
|
||||
- image: circleci/python:3.6
|
||||
steps:
|
||||
- checkout
|
||||
- restore_cache:
|
||||
key: deps1-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||
- run:
|
||||
name: Pipenv installation
|
||||
command: |
|
||||
pip install pipenv --upgrade
|
||||
pipenv install --dev --three
|
||||
- run:
|
||||
name: Solc installation
|
||||
command: |
|
||||
wget https://github.com/solidity/releases/download/v0.4.24/solc-static-linux -O "$(pipenv --venv)/bin/solc"
|
||||
chmod +x "$(pipenv --venv)/bin/solc"
|
||||
- save_cache:
|
||||
key: deps1-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||
paths:
|
||||
- "$(pipenv --venv)"
|
Loading…
Reference in New Issue