Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
polkadot
Commits
3515197b
Unverified
Commit
3515197b
authored
May 29, 2020
by
Bastian Köcher
Committed by
GitHub
May 29, 2020
Browse files
Update wasm builder to fix bugs in detecting changed files (#1169)
parent
3c92e26c
Pipeline
#94652
canceled with stages
in 5 minutes and 4 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
parachain/test-parachains/adder/build.rs
View file @
3515197b
...
...
@@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn
main
()
{
WasmBuilder
::
new
()
.with_current_project
()
.with_wasm_builder_from_crates
(
"1.0.1
0
"
)
.with_wasm_builder_from_crates
(
"1.0.1
1
"
)
.export_heap_base
()
.build
()
}
parachain/test-parachains/code-upgrader/build.rs
View file @
3515197b
...
...
@@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn
main
()
{
WasmBuilder
::
new
()
.with_current_project
()
.with_wasm_builder_from_crates
(
"1.0.1
0
"
)
.with_wasm_builder_from_crates
(
"1.0.1
1
"
)
.export_heap_base
()
.build
()
}
parachain/test-parachains/halt/build.rs
View file @
3515197b
...
...
@@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn
main
()
{
WasmBuilder
::
new
()
.with_current_project
()
.with_wasm_builder_from_crates
(
"1.0.1
0
"
)
.with_wasm_builder_from_crates
(
"1.0.1
1
"
)
.export_heap_base
()
.build
()
}
runtime/kusama/build.rs
View file @
3515197b
...
...
@@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn
main
()
{
WasmBuilder
::
new
()
.with_current_project
()
.with_wasm_builder_from_crates
(
"1.0.1
0
"
)
.with_wasm_builder_from_crates
(
"1.0.1
1
"
)
.import_memory
()
.export_heap_base
()
.build
()
...
...
runtime/polkadot/build.rs
View file @
3515197b
...
...
@@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn
main
()
{
WasmBuilder
::
new
()
.with_current_project
()
.with_wasm_builder_from_crates
(
"1.0.1
0
"
)
.with_wasm_builder_from_crates
(
"1.0.1
1
"
)
.import_memory
()
.export_heap_base
()
.build
()
...
...
runtime/test-runtime/build.rs
View file @
3515197b
...
...
@@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn
main
()
{
WasmBuilder
::
new
()
.with_current_project
()
.with_wasm_builder_from_crates
(
"1.0.1
0
"
)
.with_wasm_builder_from_crates
(
"1.0.1
1
"
)
.import_memory
()
.export_heap_base
()
.build
()
...
...
runtime/westend/build.rs
View file @
3515197b
...
...
@@ -19,7 +19,7 @@ use wasm_builder_runner::WasmBuilder;
fn
main
()
{
WasmBuilder
::
new
()
.with_current_project
()
.with_wasm_builder_from_crates
(
"1.0.1
0
"
)
.with_wasm_builder_from_crates
(
"1.0.1
1
"
)
.import_memory
()
.export_heap_base
()
.build
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment