Skip to content

Add cryptocrew operator #5

Add cryptocrew operator

Add cryptocrew operator #5

---
name: Validate IBC path
on:
pull_request:
branches:
- main
jobs:
changes:
runs-on: ubuntu-latest
outputs:
paths: ${{ steps.filter.outputs.ibc_files }}
steps:
- uses: dorny/paths-filter@v2
id: filter
with:
list-files: shell
filters: |
ibc:
- added|modified: '(_IBC|testnets/_IBC)/*.json'
Validation:
needs: changes
runs-on: ubuntu-latest
if: ${{ needs.changes.outputs.paths != null }}
steps:
- uses: actions/checkout@v4
- name: Install rly
uses: jaxxstorm/action-install-gh-release@v1
with:
repo: cosmos/relayer
tag: v2.4.2
binaries-location: Cosmos Relayer_2.4.2_linux_amd64
- name: Validate trusting period
shell: bash {0}
run: |
declare -i result=0
paths=(${{ needs.changes.outputs.paths }})
for path in "${paths[@]}"; do
if [[ "$path" != *"cosmoshub-osmosis"* ]]; then
$(scripts/validate_ibc_path.sh $path)
result=$(($result+$?))
else
echo "cosmoshub-osmosis ommitted for path validation."
fi
done
if [[ "$result" -gt 0 ]]; then
echo "Error: Incorrect trusting period for all or some clients" >&2
exit 1
fi