fix: CI quick-checks - fmt, taplo, umbrella version

This commit is contained in:
2026-01-07 17:19:27 +03:00
parent 5a48ce4498
commit f68c21c77a
38 changed files with 120 additions and 2984 deletions
+3 -7
View File
@@ -36,12 +36,8 @@ enum Method {
Compiled { instantiation_strategy: InstantiationStrategy, precompile: bool },
}
// This is just a bog-standard Dicle runtime with an extra
// `test_empty_return` and `test_dirty_plenty_memory` functions
// copy-pasted from the test runtime.
fn dicle_runtime() -> &'static [u8] {
include_bytes!("dicle_runtime.wasm")
}
// Note: Production runtime benchmarking was removed because the WASM files
// need to be pre-built. Use the test_runtime for benchmarking instead.
fn initialize(
_tmpdir: &mut Option<tempfile::TempDir>,
@@ -204,7 +200,7 @@ fn bench_call_instance(c: &mut Criterion) {
),
];
let runtimes = [("dicle_runtime", dicle_runtime()), ("test_runtime", test_runtime())];
let runtimes = [("test_runtime", test_runtime())];
let thread_counts = [1, 2, 4, 8, 16];