-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support 0x80 as a false boolean encoding (#6)
* support 0x80 as a false boolean encoding * fix travis * add back in ganache into travis * bump truffle/ganache versions * commit to a single truffle config file * specify ganache port in travis * show ganache output * use node verison 12 and supress output * fix travis.yml
- Loading branch information
1 parent
e681e25
commit 2e98786
Showing
6 changed files
with
42 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
language: node_js | ||
|
||
node_js: "node" | ||
node_js: | ||
- 12 | ||
|
||
before_script: | ||
- npm install -g truffle@5.0.1 ganache-cli@6.1.8 | ||
- npm install -g truffle@5.1.41 ganache-cli@6.10.1 | ||
- npm install | ||
|
||
script: | ||
- ganache-cli > /dev/null & | ||
- ganache-cli -p 8545 > /dev/null & | ||
- sleep 5 | ||
- rm -rf build | ||
- truffle migrate | ||
- truffle test | ||
- npm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
module.exports = { | ||
// See <http://truffleframework.com/docs/advanced/configuration> | ||
// to customize your Truffle configuration! | ||
networks: { | ||
development: { | ||
host: 'localhost', | ||
port: 8545, | ||
network_id: '*' | ||
} | ||
} | ||
}; |
This file was deleted.
Oops, something went wrong.