forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from junnmm/merge-upstream-v1.10.19
Merge upstream v1.10.19
- Loading branch information
Showing
512 changed files
with
131,377 additions
and
153,828 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
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
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,40 @@ | ||
|
||
name: hive-trouble-shooting | ||
run-name: hive simulations (manually) | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
hive_extra_flags: | ||
description: Extra flags passed to hive | ||
required: false | ||
default: "" | ||
type: string | ||
env: | ||
HIVE_REPO: kcc-community/hive | ||
jobs: | ||
hive-smoke-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout kcc's repo into kcc/ | ||
uses: actions/checkout@v3 | ||
with: | ||
path: kcc | ||
- name: checkout hive's repo into hive/ | ||
uses: actions/checkout@v3 | ||
with: | ||
path: hive | ||
repository: ${{ env.HIVE_REPO }} | ||
ref: master | ||
- name: Install golang | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: '>=1.18.0' | ||
- name: build kcc docker image | ||
run: cd $GITHUB_WORKSPACE/kcc && docker build -t kucoincommunitychain/kcc:latest . | ||
- name: build hive | ||
run: cd $GITHUB_WORKSPACE/hive && go build -v . | ||
- name: run smoke simulator | ||
run: | | ||
cd $GITHUB_WORKSPACE/hive && ./hive --panic --client kcc_latest --sim 'kcc/(smoke|gas-block-limit)' \ | ||
${{ inputs.hive_extra_flags }} | ||
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
Oops, something went wrong.