Skip to content

Commit f562122

Browse files
committed
#303 Upgrade Cosmos-SDK to v0.47.8
- Fix CI lint errors - Temporary disable Molecule actionlint job Signed-off-by: Abdulbois <abdulbois.tursunov@dsr-corporation.com> Signed-off-by: Abdulbois <abdulbois123@gmail.com>
1 parent d606863 commit f562122

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

.github/.wordlist.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,6 @@ md
8484
pdf
8585
ul
8686
WebSocket
87-
cometbft
87+
cometbft
88+
CometBFT
89+
CometBFT's

.github/workflows/on-demand_molecule.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ name: Check All Molecule tests
1818
on:
1919
push:
2020
branches:
21-
- master
21+
- dev
2222
paths:
2323
- deployment/test-requirements.txt
2424
- deployment/ansible/roles/**
2525
pull_request:
2626
branches:
27-
- master
27+
- dev
2828
paths:
2929
- deployment/test-requirements.txt
3030
- deployment/ansible/roles/**

.github/workflows/verify.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
if: needs.changes.outputs.workflows == 'true'
5757
name: Run actionlint tool to verify lint issues in GitHub actions
5858
runs-on: ubuntu-latest
59-
needs:
60-
- changes
59+
# needs:
60+
# - changes
6161
steps:
6262
- uses: actions/checkout@master
6363
- uses: reviewdog/action-actionlint@v1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ but they may be provided in the future.
166166
- The following libraries can be used as light clients:
167167
- [Golang Light Client implementation](https://pkg.go.dev/github.com/cometbft/cometbft/light)
168168
- [Rust Light Client implementation](https://docs.rs/cometbft-light-client/0.1.0-alpha.2/cometbft_light_client/)
169-
- Refer to [this doc](./docs/cometbtf-rpc.md) to see how to [subscribe](./docs/cometbtf-rpc.md#subscribe) to a CometBFT WebSocket based events and/or [query](./docs/cometbtf-rpc.md#querying-application-components) an application components.
169+
- Refer to [this doc](./docs/cometbft-rpc.md) to see how to [subscribe](./docs/cometbft-rpc.md#subscribe) to a CometBFT WebSocket based events and/or [query](./docs/cometbft-rpc.md#querying-application-components) an application components.
170170

171171

172172
### Instructions

deployment/ansible/roles/bootstrap/defaults/main.yml

-2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,3 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
16-

deployment/ansible/roles/bootstrap/molecule/default/tests/test_default.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ def test_service(host):
3333
"User=cosmovisor",
3434
"Group=dcl",
3535
'Environment="DAEMON_HOME=/var/lib/dcl/.dcl" "DAEMON_NAME=dcld"',
36-
"ExecStart=/usr/bin/cosmovisor start",
36+
"ExecStart=/usr/bin/cosmovisor run start",
3737
]:
3838
assert prop in svc.content_string

deployment/ansible/roles/configure/defaults/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ client:
2828
# <host>:<port> to Tendermint RPC interface for this chain
2929
node: "tcp://localhost:26657"
3030
# Transaction broadcasting mode (sync|async|block)
31-
broadcast-mode: block
31+
broadcast-mode: sync
3232
config: {}
3333
app: {}

deployment/cosmovisor.service

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ User=ubuntu
1111
Environment="DAEMON_HOME=/var/lib/ubuntu/.dcl"
1212
Environment="DAEMON_NAME=dcld"
1313
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=true"
14-
ExecStart=/usr/bin/cosmovisor start
14+
ExecStart=/usr/bin/cosmovisor run start
1515

1616
[Install]
1717
WantedBy=multi-user.target

deployment/scripts/run_dcl_node

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ function run_node {
353353

354354

355355
function wait_node_up {
356-
local _timeout="${1:-30}"
356+
local _timeout="${1:-60}"
357357
local _try=1
358358

359359
echo -e "Waiting the node becomes up"
File renamed without changes.

docs/transactions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Please make sure that TLS is enabled in gRPC, REST or Light Client Proxy for sec
9797
- Tendermint RPC supports state proofs. Tendermint's Light Client library can be used to verify the state proofs.
9898
So, if Light Client API is used, then it's possible to communicate with non-trusted nodes.
9999
- Please note, that multi-value queries don't have state proofs support and should be sent to trusted nodes only.
100-
- Refer to [this doc](./cometbtf-rpc.md) to see how to [subscribe](./cometbtf-rpc.md#subscribe) to a Tendermint WebSocket based events and/or [query](./cometbtf-rpc.md#querying-application-components) an application components.
100+
- Refer to [this doc](./cometbft-rpc.md) to see how to [subscribe](./cometbft-rpc.md#subscribe) to a Tendermint WebSocket based events and/or [query](./cometbft-rpc.md#querying-application-components) an application components.
101101

102102
`NotFound` (404 code) is returned if an entry is not found on the ledger.
103103

integration_tests/run-all.sh

+11-11
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,17 @@ make image &>${DETAILED_OUTPUT_TARGET}
111111

112112
cleanup_pool
113113

114+
# Deploy tests
115+
if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "deploy" ]]; then
116+
DEPLOY_SHELL_TEST="./integration_tests/deploy/test_deploy.sh"
117+
if bash "$DEPLOY_SHELL_TEST" &>${DETAILED_OUTPUT_TARGET}; then
118+
log "$DEPLOY_SHELL_TEST finished successfully"
119+
else
120+
log "$DEPLOY_SHELL_TEST failed"
121+
exit 1
122+
fi
123+
fi
124+
114125
# Cli shell tests
115126
if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "cli" ]]; then
116127
CLI_SHELL_TESTS=$(find integration_tests/cli -type f -name '*.sh' -not -name "common.sh")
@@ -181,17 +192,6 @@ if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "rest" ]]; then
181192
done
182193
fi
183194

184-
# Deploy tests
185-
if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "deploy" ]]; then
186-
DEPLOY_SHELL_TEST="./integration_tests/deploy/test_deploy.sh"
187-
if bash "$DEPLOY_SHELL_TEST" &>${DETAILED_OUTPUT_TARGET}; then
188-
log "$DEPLOY_SHELL_TEST finished successfully"
189-
else
190-
log "$DEPLOY_SHELL_TEST failed"
191-
exit 1
192-
fi
193-
fi
194-
195195
# Upgrade procedure tests
196196
if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "upgrade" ]]; then
197197
UPGRADE_SHELL_TEST="./integration_tests/upgrade/test-upgrade.sh"

0 commit comments

Comments
 (0)