-
Notifications
You must be signed in to change notification settings - Fork 7
73 lines (58 loc) · 2.2 KB
/
process_kava_dispatch.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Process Kava Repository Dispatch Event
on:
push:
# TODO(yevhenii): replace it repository_dispatch when it will be ready on kava side
branches: [ process_kava_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout rosetta-kava
uses: actions/checkout@v4
with:
path: rosetta-kava
# TODO(yevhenii): consider reusing already built kava docker image instead of rebuilding it
- name: Checkout kava
uses: actions/checkout@v4
with:
repository: Kava-Labs/kava
path: kava
- name: Checkout kvtool
uses: actions/checkout@v4
with:
repository: Kava-Labs/kvtool
path: kvtool
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: rosetta-kava/go.mod
- name: Cache Go Modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('./rosetta-kava/**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build kava docker image
run: make docker-build
working-directory: ./kava
- name: Install kvtool
run: make install
working-directory: ./kvtool
- name: Run kava docker container
run: KAVA_TAG=local kvtool t bootstrap
- name: Wait until kava node is ready to serve traffic
run: bash ${GITHUB_WORKSPACE}/rosetta-kava/.github/scripts/wait-for-node-init.sh
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Run integration tests
run: KAVA_RPC_URL=http://localhost:26657 NETWORK=kava-local PORT=4000 SKIP_LIVE_NODE_TESTS=true make test-integration
working-directory: ./rosetta-kava
- name: Download cli
run: "curl -sSfL https://raw.githubusercontent.com/coinbase/rosetta-cli/master/scripts/install.sh | sh -s"
- name: Start rosetta server
run: ${GITHUB_WORKSPACE}/rosetta-kava/.github/scripts/kava-localnet-ci/setup.sh
shell: bash
- name: Run Check:construction test
run: ${GITHUB_WORKSPACE}/rosetta-kava/.github/scripts/kava-localnet-ci/construction.sh
shell: bash