Merge branch 'zigtools:master' into session-tests

This commit is contained in:
Techatrix 2022-08-03 21:11:43 +00:00 committed by GitHub
commit ae5da361bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 19 deletions

View File

@ -134,24 +134,26 @@ fn loadPackages(context: LoadPackagesContext) !void {
defer if (context.build_file_path == null) allocator.free(build_file_path); defer if (context.build_file_path == null) allocator.free(build_file_path);
const directory_path = build_file_path[0 .. build_file_path.len - "build.zig".len]; const directory_path = build_file_path[0 .. build_file_path.len - "build.zig".len];
const args: []const []const u8 = &[_][]const u8{
zig_exe_path,
"run",
build_runner_path,
"--cache-dir",
build_runner_cache_path,
"--pkg-begin",
"@build@",
build_file_path,
"--pkg-end",
"--",
zig_exe_path,
directory_path,
context.cache_root,
context.global_cache_root,
};
const zig_run_result = try std.ChildProcess.exec(.{ const zig_run_result = try std.ChildProcess.exec(.{
.allocator = allocator, .allocator = allocator,
.argv = &[_][]const u8{ .argv = args,
zig_exe_path,
"run",
build_runner_path,
"--cache-dir",
build_runner_cache_path,
"--pkg-begin",
"@build@",
build_file_path,
"--pkg-end",
"--",
zig_exe_path,
directory_path,
context.cache_root,
context.global_cache_root,
},
}); });
defer { defer {
@ -159,6 +161,16 @@ fn loadPackages(context: LoadPackagesContext) !void {
allocator.free(zig_run_result.stderr); allocator.free(zig_run_result.stderr);
} }
errdefer blk: {
const joined = std.mem.join(allocator, " ", args) catch break :blk;
defer allocator.free(joined);
log.err(
"Failed to execute build runner to collect packages, command:\n{s}\nError: {s}",
.{ joined, zig_run_result.stderr },
);
}
switch (zig_run_result.term) { switch (zig_run_result.term) {
.Exited => |exit_code| { .Exited => |exit_code| {
if (exit_code == 0) { if (exit_code == 0) {
@ -271,7 +283,7 @@ fn newDocument(self: *DocumentStore, uri: []const u8, text: [:0]u8) anyerror!*Ha
.cache_root = self.zig_cache_root, .cache_root = self.zig_cache_root,
.global_cache_root = self.zig_global_cache_root, .global_cache_root = self.zig_global_cache_root,
}) catch |err| { }) catch |err| {
log.warn("Failed to load packages of build file {s} (error: {})", .{ build_file.uri, err }); log.err("Failed to load packages of build file {s} (error: {})", .{ build_file.uri, err });
}; };
try self.build_files.append(self.allocator, build_file); try self.build_files.append(self.allocator, build_file);
@ -540,7 +552,7 @@ pub fn applySave(self: *DocumentStore, handle: *Handle) !void {
.cache_root = self.zig_cache_root, .cache_root = self.zig_cache_root,
.global_cache_root = self.zig_global_cache_root, .global_cache_root = self.zig_global_cache_root,
}) catch |err| { }) catch |err| {
log.warn("Failed to load packages of build file {s} (error: {})", .{ build_file.uri, err }); log.err("Failed to load packages of build file {s} (error: {})", .{ build_file.uri, err });
}; };
} }
} }

View File

@ -199,7 +199,9 @@ pub fn wizard(allocator: std.mem.Allocator) !void {
.operator_completions = operator_completions, .operator_completions = operator_completions,
.include_at_in_builtins = include_at_in_builtins, .include_at_in_builtins = include_at_in_builtins,
.max_detail_length = max_detail_length, .max_detail_length = max_detail_length,
}, .{}, out); }, .{
.whitespace = .{},
}, out);
write("successful.\n\n\n\n"); write("successful.\n\n\n\n");