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

Refactor/adding require failure messages #265

Merged
merged 13 commits into from Sep 11, 2019

Removing dependency on clone which I believe is an artifact of some o…

…f the things I tried in the past to cache build assets. Removing for attempt on getting local drone build working for debugging purposes.
  • Loading branch information
Freydal committed Sep 10, 2019
commit ac3479af2c674f5533dfec9adc3b0580d652df58
@@ -29,8 +29,7 @@ local KosuGeth(name) = Image(name, "kosu-test-geth:latest") {
"name": "tests",
"steps": [
Image("prettier_project", "node-lts:latest") {
"commands": ["yarn prettier:ci"],
"depends_on": ["clone"],
"commands": ["yarn prettier:ci"]
},

Image("build-project", "node-lts:latest") + GethConfig() {
@@ -40,8 +39,7 @@ local KosuGeth(name) = Image(name, "kosu-test-geth:latest") {
"cd packages/kosu-system-contracts",
"yarn migrate:ci",
"WEB3_URI=http://go-kosu-ci-geth:8545 yarn migrate:ci"
],
"depends_on": ["clone"]
]
},

Image("npm-tests", "node-lts:latest") + GethConfig() {
@@ -12,8 +12,6 @@ steps:
image: gcr.io/kosu-io/node-lts:latest
commands:
- yarn prettier:ci
depends_on:
- clone

- name: build-project
pull: always
@@ -27,8 +25,6 @@ steps:
environment:
WEB3_URI: http://kosu-geth:8545
WEB3_URI_WS: ws://kosu-geth:8546
depends_on:
- clone

- name: npm-tests
pull: always
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.