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

Go kosu/integration against testnet #226

Merged
merged 26 commits into from Aug 27, 2019
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4a8ae41
Integration Test Suite against testnet
gchaincl Aug 16, 2019
f127230
go-kosu: integration test cleanup
gchaincl Aug 20, 2019
a5f8518
go-kosu: update drone.yml
gchaincl Aug 20, 2019
6c85b72
test potential drone config for testnet
hrharder Aug 21, 2019
3ed7a78
migrate to second contract system server
hrharder Aug 21, 2019
abb2e0d
fixing dronefile syntax
hrharder Aug 21, 2019
9350ae7
fixing node step names
hrharder Aug 21, 2019
1b6573d
Merge branch 'master' into go-kosu/integration-against-testnet
hrharder Aug 21, 2019
867bfeb
add verbose flag to GOTEST_FLAGS
hrharder Aug 21, 2019
7366970
add required environment variable for int. tests
hrharder Aug 21, 2019
5008ef4
use alternate go-kosu geth image for web3
hrharder Aug 21, 2019
115968b
fix export command
hrharder Aug 22, 2019
7b8ffc5
update hostnames for persistent peers
hrharder Aug 22, 2019
92fb51d
Fully move .drone to jsonnet definitions
gchaincl Aug 22, 2019
5f118e0
readd autogenerated .drone.yml
gchaincl Aug 22, 2019
5012b35
change "_" to "-"
hrharder Aug 22, 2019
cd6c221
Merge branch 'master' into go-kosu/integration-against-testnet
gchaincl Aug 22, 2019
4b00670
go-kosu: witness ethereum tests uses WS endpoint
gchaincl Aug 22, 2019
ac640ce
Merge branch 'master' into go-kosu/integration-against-testnet
hrharder Aug 22, 2019
1847687
Merge branch 'master' into go-kosu/integration-against-testnet
hrharder Aug 23, 2019
e5d0770
go-kosu: disable race detector on tests
gchaincl Aug 26, 2019
cb3572e
Merge branch 'master' into go-kosu/integration-against-testnet
gchaincl Aug 26, 2019
6667a5c
Extending time out for more taxed CI host.
Freydal Aug 26, 2019
bca08d7
Updating image name.
Freydal Aug 26, 2019
8e6a185
Merge branch 'master' into go-kosu/integration-against-testnet
gchaincl Aug 27, 2019
3f6c1cd
Merge branch 'master' into go-kosu/integration-against-testnet
gchaincl Aug 27, 2019
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

test potential drone config for testnet

  • Loading branch information
hrharder committed Aug 21, 2019
commit 6c85b72715d32202b9053d70a8d8578b912c6b0d
@@ -27,24 +27,75 @@ steps:
depends_on:
- clone

- name: kosu-node-0
image: gcr.io/kosu-io/go-kosu-ci:latest
pull: always
detach: true
depends_on:
- build-project
commands:
- cd packages/go-kosu
- ./kosud -H ./testnet/node0 -E ws://go-kosu-ci-geth:8546

- name: kosu-node-1
image: gcr.io/kosu-io/go-kosu-ci:latest
pull: always
detach: true
depends_on:
- build-project
commands:
- cd packages/go-kosu
- ./kosud -H ./testnet/node1 -E ws://go-kosu-ci-geth:8546

- name: kosu-node-2
image: gcr.io/kosu-io/go-kosu-ci:latest
pull: always
detach: true
depends_on:
- build-project
commands:
- cd packages/go-kosu
- ./kosud -H ./testnet/node2 -E ws://go-kosu-ci-geth:8546

- name: kosu-node-3
image: gcr.io/kosu-io/go-kosu-ci:latest
pull: always
detach: true
depends_on:
- build-project
commands:
- cd packages/go-kosu
- ./kosud -H ./testnet/node3 -E ws://go-kosu-ci-geth:8546

- name: go-kosu
image: gcr.io/kosu-io/go-kosu-ci:latest
pull: always
environment:
WEB3_TEST_URI: ws://kosu-geth:8546
commands:
- cd packages/go-kosu
- make testnet
- make ci
depends_on:
- build-project
- node0
- node1
- node2
- node3


services:
- name: kosu-geth
image: gcr.io/kosu-io/kosu-geth:0.1.1
pull: always
ports:
- 8545
- 8546
- name: kosu-geth
image: gcr.io/kosu-io/kosu-geth:0.1.1
pull: always
ports:
- 8545
- 8546

- name: go-kosu-ci-geth
image: gcr.io/kosu-io/kosu-geth:0.1.1
pull: always
ports:
- 8546

trigger:
event:
@@ -1,11 +1,11 @@
FROM golang:1.12

WORKDIR /go-kosu
COPY kosud .
COPY kosu-cli .
COPY ./testnet/ ./testnet/
# COPY kosud .
# COPY kosu-cli .
# COPY ./testnet/ ./testnet/

#COPY . .
#RUN make
COPY . .
RUN go build -o kosud ./cmd/kosud

CMD ./kosud
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.