Skip to content

Commit c512fa3

Browse files
author
bors-servo
authored
Auto merge of #220 - Eijebong:128mb_stack, r=jdm
Set the stack size to 128MB for the build script 8MB doesn't seem to be enough for servo's CI... <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-cssparser/220) <!-- Reviewable:end -->
2 parents 35ca632 + a0cfeb9 commit c512fa3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cssparser"
3-
version = "0.23.6"
3+
version = "0.23.7"
44
authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
55

66
description = "Rust implementation of CSS Syntax Level 3"

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ mod codegen {
3737
println!("cargo:rerun-if-changed={}", input.display());
3838

3939
// We have stack overflows on Servo's CI.
40-
let handle = Builder::new().stack_size(8 * 1024 * 1024).spawn(move || {
40+
let handle = Builder::new().stack_size(128 * 1024 * 1024).spawn(move || {
4141
match_byte::expand(&input, &output);
4242
}).unwrap();
4343

0 commit comments

Comments
 (0)