-
Notifications
You must be signed in to change notification settings - Fork 66
39 lines (33 loc) · 1.22 KB
/
e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Run E2E tests
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
build:
runs-on: [ "arm-linux" ]
env:
GOPRIVATE: "github.com/dymensionxyz/*"
GH_ACCESS_TOKEN: "${{ secrets.GH_ACCESS_TOKEN }}"
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- run: git config --global url.https://$GH_ACCESS_TOKEN@github.com/.insteadOf https://github.com/
- name: Init a local rollapp
run: |
rm -rf ~/tmp/e2e_roller_config
go run . config init --home ~/tmp/e2e_roller_config --da mock endtoend_1-${{ github.run_number }} RAX
- name: Fund the RollApp addresses
run: |
HUB_SEQ_ADDR=$(go run . keys list --output json | jq -r '.hub_sequencer')
RELAYER_ROLLAPP_ADDR=$(go run . keys list --output json | jq -r '.relayer-rollapp-key')
/usr/local/bin/dymd tx bank multi-send local-user $HUB_SEQ_ADDR $RELAYER_ROLLAPP_ADDR 1udym --yes -b block --keyring-backend test --home ~/tmp/e2e_roller_config/local-hub
- name: Register the rollapp
run: |
go run . register --home ~/tmp/e2e_roller_config