Skip to content

Commit

Permalink
CI: even more aggressive pruning based on memory
Browse files Browse the repository at this point in the history
...ultimately, there won't be a way around reducing memory usage with large modules...
  • Loading branch information
danleh committed Jul 26, 2024
1 parent eeec958 commit faeb9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/test_utilities/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub fn for_each_valid_wasm_binary_in_test_set(test_fn: impl Fn(&Path) + Send + S
.map(|file| file.len())
.unwrap_or(0);

const AST_BYTES_PER_INSTRUCTION_BYTE_APPROX: u64 = 50;
const AST_BYTES_PER_INSTRUCTION_BYTE_APPROX: u64 = 100;
let memory_needed_for_ast_approx = module_size_bytes * AST_BYTES_PER_INSTRUCTION_BYTE_APPROX;

let memory_available = {
Expand Down

0 comments on commit faeb9af

Please sign in to comment.