-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added process_kava_dispatch workflow
- Loading branch information
1 parent
70bf6de
commit cf17fc8
Showing
2 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
name: Process Kava Repository Dispatch Event | ||
|
||
on: | ||
push: | ||
branches: [ process_kava_dispatch ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: rosetta-kava | ||
|
||
- name: "echo" | ||
run: "echo $GITHUB_WORKSPACE" | ||
- name: "ls" | ||
run: "ls -la $GITHUB_WORKSPACE" | ||
- name: "pwd" | ||
run: "pwd" | ||
|
||
- 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 | ||
# run: make build | ||
|
||
# - name: "Clone Kava" | ||
# run: git clone https://github.com/Kava-Labs/kava | ||
|
||
- name: Checkout kava | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: Kava-Labs/kava | ||
path: kava | ||
|
||
- name: "echo" | ||
run: "echo $GITHUB_WORKSPACE" | ||
- name: "ls" | ||
run: "ls -la $GITHUB_WORKSPACE" | ||
- name: "pwd" | ||
run: "pwd" | ||
|
||
- name: "build kava" | ||
run: make docker-build | ||
working-directory: ./kava | ||
|
||
- name: Checkout kvtool | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: Kava-Labs/kvtool | ||
path: kvtool | ||
|
||
- name: "build kvtool" | ||
run: make install | ||
working-directory: ./kvtool | ||
|
||
- name: "start kvtool" | ||
run: KAVA_TAG=local kvtool t bootstrap | ||
|
||
- name: "sleep 30 sec" | ||
run: "sleep 30" | ||
|
||
- name: "check if EVM API is available" | ||
run: | | ||
curl -sS -X POST \ | ||
--data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' \ | ||
-H "Content-Type: application/json" \ | ||
http://localhost:8545 | jq | ||
- name: "docker ps" | ||
run: "docker ps" | ||
|
||
- name: "docker logs" | ||
run: "docker logs generated-kavanode-1" | ||
|
||
# - name: Setup tmate session | ||
# uses: mxschmitt/action-tmate@v3 | ||
|
||
- name: Test Integration | ||
run: KAVA_RPC_URL=http://localhost:26657 NETWORK=kava-local PORT=4000 make test-integration | ||
working-directory: ./rosetta-kava | ||
|
||
- name: "docker ps" | ||
run: "docker ps" | ||
if: always() | ||
|
||
- name: "docker logs" | ||
run: "docker logs generated-kavanode-1" | ||
if: always() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters