Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: truffle test failure #651

Merged
merged 18 commits into from
Jul 1, 2020
Merged
Show file tree
Hide file tree
Changes from 17 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
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2.1
executors:
truffle_executor:
docker:
- image: circleci/node:10.16
- image: circleci/node:10.20
python_executor:
docker:
- image: circleci/python:3.7.7
Expand Down Expand Up @@ -70,6 +70,10 @@ jobs:
working_directory: ~/repo
steps:
- setup_truffle_env
- run:
name: truffle version
command: npx truffle version
working_directory: ~/repo/plasma_framework
- run:
name: Run tests
command: npm run test
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ COPY . /home/plasma-contracts
WORKDIR /home/plasma-contracts/plasma_framework

RUN rm -Rf ./node_modules
RUN rm -Rf ./build

RUN npm install

RUN npx truffle version

RUN npx truffle compile
Loading