From 3e85eb309032f1dbf78a258ed3af2ba9d23cd875 Mon Sep 17 00:00:00 2001 From: Caleb Fenton Date: Fri, 5 Aug 2016 16:41:35 -0700 Subject: [PATCH] Try fewer forks for TravisCI --- README.md | 4 ++++ build.gradle | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index acd4a521e..8b6acbe35 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,10 @@ Some other examples of dead code: * unreferenced assignments - assigning registers and not using them * unreached / unreachable instructions - `if (false) { dead_code(); }` +# Further Reading + +* [Dalvik Virtual Execution with SmaliVM](http://calebfenton.github.io/2016/04/30/dalvik-virtual-execution-with-smalivm/) + # License This tool is available under a dual license: a commercial one suitable for closed source projects and a GPL license that can be used in open source software. diff --git a/build.gradle b/build.gradle index 01c6a4cc9..9b87341cf 100644 --- a/build.gradle +++ b/build.gradle @@ -76,7 +76,7 @@ subprojects { maxParallelForks = 2 minHeapSize = '256m' maxHeapSize = '1500m' - forkEvery = 20 + forkEvery = 10 } // This is just to show off API usage. No tests needed.