Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update cosmwasm and sylvia #222

Merged
merged 13 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.70.0
toolchain: 1.85.0
target: wasm32-unknown-unknown
override: true

Expand All @@ -28,7 +28,7 @@ jobs:
- name: Run build
uses: actions-rs/cargo@v1
with:
toolchain: 1.70.0
toolchain: 1.85.0
command: build
args: --workspace
env:
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Run tests
uses: actions-rs/cargo@v1
with:
toolchain: 1.70.0
toolchain: 1.85.0
command: test
args: --workspace
env:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Compile WASM contract
uses: actions-rs/cargo@v1
with:
toolchain: 1.70.0
toolchain: 1.85.0
command: wasm
args: --workspace --exclude mesh-virtual-staking-mock
env:
Expand All @@ -63,7 +63,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.70.0
toolchain: 1.85.0
override: true
components: rustfmt, clippy

Expand All @@ -75,13 +75,13 @@ jobs:
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
toolchain: 1.70.0
toolchain: 1.85.0
command: fmt
args: --all -- --check

- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
toolchain: 1.70.0
toolchain: 1.85.0
command: clippy
args: --all-targets -- -D warnings -A clippy::too-many-arguments
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.70.0
toolchain: 1.85.0
target: wasm32-unknown-unknown
override: true

Expand All @@ -33,7 +33,7 @@ jobs:
- name: Build Wasm images
uses: addnab/docker-run-action@v3
with:
image: cosmwasm/optimizer:0.15.0
image: cosmwasm/optimizer:0.16.0
options: -v ${{ github.workspace }}:/code
run: optimize.sh .

Expand Down
Loading
Loading