Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v2.13.0-rc0' into v2.13.0-rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
skyargos committed Nov 7, 2024
2 parents 0488106 + 7acde33 commit 8fae226
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: '1.21.10'
go-version: '1.23.0'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.21
go-version: 1.23
- uses: technote-space/[email protected]
with:
PATTERNS: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
- uses: codecov/[email protected]
with:
file: ./coverage.txt # optional
token: 6556fc17-6f3d-40be-b947-0bba9a9fe92f
fail_ci_if_error: true

test-e2e:
Expand Down
15 changes: 7 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,13 @@ localnet-stop:
docker-compose down

start-localnet-ci:
./build/shentud init liveness --chain-id liveness --home ~/.shentud-liveness
./build/shentud config chain-id liveness --home ~/.shentud-liveness
./build/shentud config keyring-backend test --home ~/.shentud-liveness
./build/shentud keys add val --home ~/.shentud-liveness
./build/shentud add-genesis-account val 10000000000000000000000000uctk --home ~/.shentud-liveness --keyring-backend test
./build/shentud gentx val 1000000000uctk --home ~/.shentud-liveness --chain-id liveness
./build/shentud collect-gentxs --home ~/.shentud-liveness
sed -i'' 's/minimum-gas-prices = ""/minimum-gas-prices = "0uatom"/' ~/.shentud-liveness/config/app.toml
./build/shentud init liveness -o --chain-id liveness --home ~/.shentud-liveness
./build/shentud config set client keyring-backend test --home ~/.shentud-liveness
./build/shentud keys add val --keyring-backend test --home ~/.shentud-liveness
./build/shentud add-genesis-account val 10000000000000000000stake --home ~/.shentud-liveness --keyring-backend test
./build/shentud genesis gentx val 1000000000stake --home ~/.shentud-liveness --chain-id liveness --keyring-backend test
./build/shentud genesis collect-gentxs --home ~/.shentud-liveness
sed -i 's/minimum-gas-prices = ".*"/minimum-gas-prices = "0stake"/' ~/.shentud-liveness/config/app.toml
./build/shentud start --home ~/.shentud-liveness --x-crisis-skip-assert-invariants

.PHONY: start-localnet-ci
Expand Down
2 changes: 1 addition & 1 deletion devtools/localnet/test_localnet_liveness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ while [ ${CNT} -lt $ITER ]; do
echo "Success: number of blocks reached"
exit 0
fi

((CNT++))
sleep $SLEEP
done

Expand Down

0 comments on commit 8fae226

Please sign in to comment.