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

ci: force full suite run on all PR's #180

Merged
merged 9 commits into from Jul 24, 2019
@@ -26,20 +26,6 @@ steps:
- yarn migrate:ci
depends_on:
- clone
when:
changeset:
includes:
[
.drone.yml,
package.json,
tsconfig.json,
packages/go-kosu/**/*.*,
packages/kosu-sdk-contracts/**/*.*,
packages/kosu-system-contracts/**/*.*,
packages/kosu.js/**/*.*,
packages/tslint-config/**/*.*,
packages/tsc-config/**/*.*,
]

- name: npm-tests
image: gcr.io/kosu-io/node-lts:latest
@@ -50,17 +36,6 @@ steps:
- yarn test:ci
depends_on:
- build-project
when:
changeset:
includes:
[
.drone.yml,
packages/kosu-sdk-contracts/**/*.*,
packages/kosu-system-contracts/**/*.*,
packages/kosu.js/**/*.*,
packages/tslint-config/**/*.*,
packages/tsc-config/**/*.*,
]

- name: solidity-tests
image: gcr.io/kosu-io/node-lts:latest
@@ -71,17 +46,6 @@ steps:
- yarn contracts:test:ci
depends_on:
- build-project
when:
changeset:
includes:
[
.drone.yml,
packages/kosu-sdk-contracts/**/*.*,
packages/kosu-system-contracts/**/*.*,
packages/tslint-config/**/*.*,
packages/tsc-config/**/*.*,
tsconfig.json,
]

- name: go-kosu
image: gcr.io/kosu-io/go-kosu-ci:latest
@@ -93,15 +57,6 @@ steps:
- make ci
depends_on:
- build-project
when:
changeset:
includes:
[
.drone.yml,
packages/go-kosu/**/*.*,
packages/kosu-sdk-contracts/**/*.*,
packages/kosu-system-contracts/**/*.*,
]

services:
- name: kosu-geth
@@ -9,7 +9,7 @@
"byzantiumBlock": 4,
"constantinopleBlock": 5,
"clique": {
"period": 1,
"period": 0,
"epoch": 30000
}
},
@@ -37,6 +37,9 @@ if (args["test-mnemonic"] || !mnemonic) {
const addresses = await web3.eth.getAccounts();

for (const account of addresses) {
if (account.toLowerCase() === "0x5409ed021d9299bf6814279a6a1411a7e866a631") {
return;
}
const expectedAmount = await kosuToken.estimateEtherToToken.callAsync(new BigNumber(web3.utils.toWei("60")));
/* tslint:disable */
await kosuToken.bondTokens
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.