Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,13 @@ jobs:
build:
context: docker-hub-credentials
docker:
- image: circleci/python:3.7.4
- image: circleci/node:10
- image: trufflesuite/ganache-cli
command: ganache-cli -e 10000000000 -a 100
working_directory: ~/repo
steps:
- checkout

- run:
command: |
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get update
sudo pip3 install vyper==0.1.0b13
# For custom Vyper builds
# cd ..
# git clone https://github.com/ethereum/vyper.git
# cd vyper
# sudo pip3 install .
# export PATH=$PATH:$PWD/bin

# Cache disabled as `npm i` occasionally fails on dependancies which use websocket
- run: npm i

Expand Down