Skip to content

Commit

Permalink
*: add e2e tests, replace "runner" with network-runner
Browse files Browse the repository at this point in the history
Signed-off-by: Gyuho Lee <gyuho.lee@avalabs.org>
  • Loading branch information
gyuho committed Apr 19, 2022
1 parent 5cc6485 commit 68d9d0c
Show file tree
Hide file tree
Showing 10 changed files with 507 additions and 1,424 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: e2e tests

on:
push:
branches:
- main
tags:
- "*"
pull_request:

jobs:
e2e_test:
name: e2e tests
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Run e2e tests
shell: bash
run: scripts/run.sh 1.7.10 test 0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ and creates a `subnet-evm` genesis file.
```bash
# to startup a local cluster (good for development)
cd ${HOME}/go/src/github.com/ava-labs/subnet-evm
./scripts/run.sh 1.7.7 0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC
./scripts/run.sh 1.7.10 run 0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC
```

_The private key for the ewoq address (`0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC`) is
Expand Down Expand Up @@ -561,7 +561,7 @@ Once your config is specified, you can run the tool by either invoking `go run m

To make getting started easier, the ewoq key `0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC`
has been pre-added to the simulator key directory and can be added to genesis during local network
creation (`./scripts/run.sh 1.7.7 0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC`).
creation (`./scripts/run.sh 1.7.10 run 0x8db97C7cEcE249c2b98bDC0226Cc4C2A57BF52FC`).
If you do not add this key to genesis, you'll need to manually fund the
`master` account when prompted in the terminal.

Expand Down
2 changes: 0 additions & 2 deletions runner/README

This file was deleted.

43 changes: 0 additions & 43 deletions runner/cluster_info.go

This file was deleted.

Loading

0 comments on commit 68d9d0c

Please sign in to comment.