zig/lib/std/Build
Andrew Kelley 0b8736f5ed re-enable CLI tests
CLI tests are now ported over to the new std.Build API and thus work
properly with concurrency.

 * add `std.Build.addCheckFile` for creating a
   `std.Build.CheckFileStep`.
 * add `std.Build.makeTempPath`. This function is intended to be called
   in the `configure` phase only. It returns an absolute directory path,
   which is potentially going to be a source of API breakage in the
   future, so keep that in mind when using this function.
 * add `std.Build.CheckFileStep.setName`.
 * `std.Build.CheckFileStep`: better error message when reading the
   input file fails.
 * `std.Build.RunStep`: add a `has_side_effects` flag for when you need
   to override the autodetection.
 * `std.Build.RunStep`: add the ability to obtain a FileSource for the
   directory that contains the written files.
 * `std.Build.WriteFileStep`: add a way to write bytes to an arbitrary
   path - absolute or relative to the package root. Be careful with this
   because it updates source files. This should not be used as part of
   the normal build process, but as a utility occasionally run by a
   developer with intent to modify source files and then commit those
   changes to version control. A file added this way is not available
   with `getFileSource`.
2023-03-15 10:48:13 -07:00
..
Cache move the cache system from compiler to std lib 2023-02-13 06:42:25 -07:00
Cache.zig std.Build.Cache.Directory: add a format() method 2023-03-15 10:48:13 -07:00
CheckFileStep.zig re-enable CLI tests 2023-03-15 10:48:13 -07:00
CheckObjectStep.zig eliminate stderr usage in std.Build make() functions 2023-03-15 10:48:13 -07:00
CompileStep.zig zig build: add an OOM-prevention system 2023-03-15 10:48:13 -07:00
ConfigHeaderStep.zig std.Build.ConfigHeaderStep: integrate with the cache system 2023-03-15 10:48:13 -07:00
FmtStep.zig zig build: many enhancements related to parallel building 2023-03-15 10:48:13 -07:00
InstallArtifactStep.zig std.Build: audit use of updateFile 2023-03-15 10:48:13 -07:00
InstallDirStep.zig std.Build: audit use of updateFile 2023-03-15 10:48:13 -07:00
InstallFileStep.zig std.Build: audit use of updateFile 2023-03-15 10:48:13 -07:00
ObjCopyStep.zig std.Build.RunStep: add maxrss, duration, and cached status 2023-03-15 10:48:13 -07:00
OptionsStep.zig zig build: many enhancements related to parallel building 2023-03-15 10:48:13 -07:00
RemoveDirStep.zig std.build.CompileStep: eliminate std.log usage 2023-03-15 10:48:13 -07:00
RunStep.zig re-enable CLI tests 2023-03-15 10:48:13 -07:00
Step.zig zig build: add an OOM-prevention system 2023-03-15 10:48:13 -07:00
TranslateCStep.zig re-enable CLI tests 2023-03-15 10:48:13 -07:00
WriteFileStep.zig re-enable CLI tests 2023-03-15 10:48:13 -07:00