drake (version 6.2.1)

time_stamps: Write dummy timestamp files for make(..., parallelism = "Makefile").

Description

For "Makefile" parallelism, dummy timestamp files tell the Makefile which targets need to be built and which can be skipped. This function is for internal use only. It is only exported to flesh out some of the examples in the help files.

Usage

time_stamps(config)

Arguments

config

Internal master configuration list produced by drake_config().

Value

nothing

Examples

Run this code
# NOT RUN {
test_with_dir("Quarantine side effects.", {
load_mtcars_example() # Get the code with drake_example("mtcars").
config <- drake_config(my_plan) # Master internal configuration list
time_stamps(config)
# Now look in '.drake/ts' for dummy timestamp files.
})
# }

Run the code above in your browser using DataCamp Workspace