Update skeleton

This commit is contained in:
Jeehoon Kang
2020-06-05 20:27:13 +09:00
parent 8134a56966
commit 54004932e3
5 changed files with 4 additions and 39 deletions

5
Jenkinsfile vendored
View File

@@ -39,8 +39,9 @@ pipeline {
// The stack size of a new thread is `2 MiB` on Linux, and this small stack size
// can cause `stack-overflow` error when testing stack-intensive code.
// For this reason, we need to increase the default size of stack to `8 MiB`.
sh "RUST_MIN_STACK=8388608 cargo test"
sh "RUST_MIN_STACK=8388608 cargo test --release"
// TODO: delete `--skip test_examples_asmgen`
sh "RUST_MIN_STACK=8388608 cargo test -- --skip test_examples_asmgen"
sh "RUST_MIN_STACK=8388608 cargo test --release -- --skip test_examples_asmgen"
}
}
}