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

[WIP] 0.7.0: opcode trace instrumentation & plugin app architecture #357

Closed
wants to merge 13 commits into from
38 changes: 21 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
name: Run tests
command: |
npm run test-cov
- run:
name: Upload coverage
command: |
bash <(curl -s https://codecov.io/bash)

# TODO: Re-enable
#- run:
# name: Upload coverage
# command: |
# bash <(curl -s https://codecov.io/bash)

# This works but takes a while....
e2e-colony:
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
sudo yarn add "$PR_PATH" --dev &&
sudo npm run coverage

# AND...this doesn't work either! Thanks to truffle "obtain" and circle permission denied.
# AND...this is trouble too thanks to truffle "obtain" and circle permission denied.
e2e-metacoin:
docker:
- image: circleci/node:10.12-stretch
Expand All @@ -75,16 +77,18 @@ workflows:
build:
jobs:
- unit-test
- e2e-zeppelin
- e2e-metacoin
nightly:
triggers:
- schedule:
cron: "0 1 * * *" # 1am UTC
filters:
branches:
only:
- master
jobs:
- e2e-zeppelin
# TODO: re-enable
#- e2e-zeppelin
#- e2e-metacoin
#nightly:
# triggers:
# - schedule:
# cron: "0 1 * * *" # 1am UTC
# filters:
# branches:
# only:
# - master
# jobs:
# TODO: re-enable
#- e2e-zeppelin
#- e2e-colony
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
allFiredEvents
scTopics
scDebugLog
coverage.json
coverage/
node_modules/
.changelog
.DS_Store
test/artifacts
test/cache
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test/
.circleci/
docs/
18 changes: 18 additions & 0 deletions buidler.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

// Mute compiler warnings - this will need to be addressed properly in
// the Buidler plugin by overloading TASK_COMPILE_COMPILE.
const originalLog = console.log;
console.warn = () => {};
console.log = val => val === '\n' ? null : originalLog(val);

module.exports = {
solc: {
version: "0.5.8"
},
paths: {
artifacts: "./test/artifacts",
cache: "./test/cache",
test: "./test/units",
sources: "./test/sources/contracts",
}
}
Loading