Skip to content

Instantly share code, notes, and snippets.

@prempalsingh
Created August 22, 2021 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prempalsingh/d9f61655fa3b2d4cda71080cc2cca84f to your computer and use it in GitHub Desktop.
Save prempalsingh/d9f61655fa3b2d4cda71080cc2cca84f to your computer and use it in GitHub Desktop.
config_before {
title = "Configuration time (Before)"
tasks = ["help"]
git-checkout = {
build = "main"
cleanup = "prem/remove_build_styles"
}
cleanup-tasks = [":ZippingReferance:clean", "clean"]
}
config_later {
title = "Configuration time (After)"
tasks = ["help"]
git-checkout = {
build = "prem/remove_build_styles"
cleanup = "main"
}
cleanup-tasks = [":ZippingReferance:clean", "clean"]
}
clean_build_default {
tasks = [":ZippingReferance:assembleDebug"]
warm-ups = 1
iterations = 3
cleanup-tasks = ["clean"]
jvm-args = ["-Xmx5g"]
}
clean_build_6gm_ram {
tasks = [":ZippingReferance:assembleDebug"]
warm-ups = 1
iterations = 3
cleanup-tasks = ["clean"]
jvm-args = ["-Xmx6g"]
}
clean_build_parallel {
tasks = [":ZippingReferance:assembleDebug"]
gradle-args = ["--parallel"]
warm-ups = 1
iterations = 3
cleanup-tasks = ["clean"]
}
clean_build_configuration {
tasks = [":ZippingReferance:assembleDebug"]
gradle-args = ["--parallel"]
warm-ups = 1
iterations = 3
cleanup-tasks = ["clean"]
}
clean_build_parallel_gc {
tasks = [":ZippingReferance:assembleDebug"]
jvm-args = ["-XX:+UseParallelGC"]
warm-ups = 1
iterations = 3
cleanup-tasks = ["clean"]
}
clean_build_parallel_before {
tasks = [":ZippingReferance:assembleDebug"]
cleanup-tasks = ["clean"]
git-revert = ["1c4501b85e6c85a505642bb6e2e8df8b32de431d"]
versions = ["6.1.1"]
warm-ups = 2
iterations = 6
}
clean_build_parallel_minsdk_16{
tasks = [":ZippingReferance:assembleDebug"]
cleanup-tasks = ["clean"]
system-properties {
"msv" = "16"
}
}
clean_build_parallel_minsdk_21 {
tasks = [":ZippingReferance:assembleDebug"]
cleanup-tasks = ["clean"]
system-properties {
"msv" = "21"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment