```[compile.zinc] # Do not use zinc incremental bu...
# general
w
Copy code
[compile.zinc]
# Do not use zinc incremental builds in CI. This has the effect of executing only clean or
# cached builds for each target, which maximizes correctness and the number of artifacts in the
# remote cache.
#
#   ----------------------------------------------------------------------------------------------
#   | incremental | incremental_caching | effect                                                 |
#   ----------------------------------------------------------------------------------------------
#   | False       | *                   | Clean but slightly slower builds; everything cached    |
#   | True        | True                | Faster but potentially dirty builds; everything cached |
#   | True        | False               | Clean builds; only some things cached                  |
#   ----------------------------------------------------------------------------------------------
#
incremental: False