-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Closed
Labels
contributor friendlyThis issue is limited in scope and/or knowledge of Zig internals.This issue is limited in scope and/or knowledge of Zig internals.enhancementSolving this issue will likely involve adding new logic or components to the codebase.Solving this issue will likely involve adding new logic or components to the codebase.zig build systemstd.Build, the build runner, `zig build` subcommand, package managementstd.Build, the build runner, `zig build` subcommand, package management
Milestone
Description
Extracted from #14265.
Depends on #14183.
zig build
should support fetching via an URL like this:
.url = "https://example.com/foo.tar.zst",
Lines 357 to 376 in 7cb2f92
if (mem.endsWith(u8, uri.path, ".tar.gz")) { | |
// I observed the gzip stream to read 1 byte at a time, so I am using a | |
// buffered reader on the front of it. | |
var br = std.io.bufferedReaderSize(std.crypto.tls.max_ciphertext_record_len, req.reader()); | |
var gzip_stream = try std.compress.gzip.gzipStream(gpa, br.reader()); | |
defer gzip_stream.deinit(); | |
try std.tar.pipeToFileSystem(tmp_directory.handle, gzip_stream.reader(), .{ | |
.strip_components = 1, | |
}); | |
} else { | |
return reportError( | |
ini, | |
comp_directory, | |
uri.path.ptr, | |
"unknown file extension for path '{s}'", | |
.{uri.path}, | |
); | |
} |
Related:
theoparis, karimfromjordan, 0x08088405, q2p, lin72h and 1 more
Metadata
Metadata
Assignees
Labels
contributor friendlyThis issue is limited in scope and/or knowledge of Zig internals.This issue is limited in scope and/or knowledge of Zig internals.enhancementSolving this issue will likely involve adding new logic or components to the codebase.Solving this issue will likely involve adding new logic or components to the codebase.zig build systemstd.Build, the build runner, `zig build` subcommand, package managementstd.Build, the build runner, `zig build` subcommand, package management
Type
Projects
Status
Fetching