Skip to content

Commit

Permalink
F/stock optimizer (#76)
Browse files Browse the repository at this point in the history
Replace built optimiser by pre-built optimiser
  • Loading branch information
maurolacy authored Sep 29, 2024
1 parent 4fe01da commit 77ac1eb
Show file tree
Hide file tree
Showing 10 changed files with 259 additions and 312 deletions.
3 changes: 1 addition & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ integration = "run-script integration"
gen-data = "run-script gen-data"
gen-proto = "run-script gen-proto"
gen-schema = "run-script gen-schema"
build-optimizer = "run-script build-optimizer"
optimize = "run-script optimize"
precommit = "run-script precommit"
lint = "run-script lint"
fix-lint = "run-script fix-lint"
fix-lint = "run-script fix-lint"
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Build optimised Wasm binaries
run: "./scripts/build-optimizer-ci.sh"
run: "./scripts/optimizer.sh"
- uses: actions/[email protected]
with:
path: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm-tests-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Build optimised Wasm binaries
run: "./scripts/build-optimizer-ci.sh"
run: "./scripts/optimizer.sh"
- name: List optimised Wasm binaries
run: bash -c "ls $WORKSPACE/artifacts/*.wasm"
- name: Install cosmwasm-check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Build optimised Wasm binaries
run: "./scripts/build-optimizer-ci.sh"
run: "./scripts/optimizer.sh"
- name: List optimised Wasm binaries
run: bash -c "ls $WORKSPACE/artifacts/*.wasm"
Loading

0 comments on commit 77ac1eb

Please sign in to comment.