-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from SecurityTokenStandard/add-ci
Add CI
- Loading branch information
Showing
4 changed files
with
430 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: node_js | ||
node_js: | ||
- '8' | ||
cache: | ||
directories: | ||
- node_modules | ||
jobs: | ||
include: | ||
- stage: test | ||
before_script: truffle version | ||
script: 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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Exit script as soon as a command fails. | ||
set -o errexit | ||
|
||
# Executes cleanup function at script exit. | ||
trap cleanup EXIT | ||
|
||
cleanup() { | ||
# Kill the testrpc instance that we started (if we started one and if it's still running). | ||
if [ -n "$testrpc_pid" ] && ps -p $testrpc_pid > /dev/null; then | ||
kill -9 $testrpc_pid | ||
fi | ||
} | ||
|
||
testrpc_port=8545 | ||
|
||
testrpc_running() { | ||
nc -z localhost "$testrpc_port" | ||
} | ||
|
||
start_testrpc() { | ||
# We define 10 accounts with balance 1M ether, needed for high-value tests. | ||
local accounts=( | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501200,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501201,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501202,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501203,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501204,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501205,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501206,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501207,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501208,1000000000000000000000000" | ||
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501209,1000000000000000000000000" | ||
) | ||
|
||
if [ "$COVERAGE" = true ]; then | ||
node_modules/.bin/testrpc-sc --gasLimit 0xfffffffffff --port "$testrpc_port" "${accounts[@]}" > /dev/null & | ||
else | ||
node_modules/.bin/ganache-cli --gasLimit 8000000 "${accounts[@]}" > /dev/null & | ||
fi | ||
|
||
testrpc_pid=$! | ||
} | ||
|
||
if testrpc_running; then | ||
echo "Using existing testrpc instance" | ||
else | ||
echo "Starting our own testrpc instance" | ||
start_testrpc | ||
fi | ||
truffle version | ||
node_modules/.bin/truffle test "$@" |
Oops, something went wrong.