investing in debugging tools

This commit is contained in:
Meghan Denny 2021-12-29 22:44:24 -08:00
parent 56fccdefd5
commit 81818e3319
2 changed files with 8 additions and 6 deletions

View File

@ -21,6 +21,9 @@ jobs:
with: with:
version: master version: master
- run: zig version
- run: zig env
- name: Build - name: Build
run: zig build run: zig build

View File

@ -100,19 +100,18 @@ const Server = struct {
} }
fn shutdown(self: *Server) void { fn shutdown(self: *Server) void {
_ = self;
// FIXME this shutdown request fails with a broken pipe on stdin on the CI // FIXME this shutdown request fails with a broken pipe on stdin on the CI
// self.request("shutdown", "{}", null) catch @panic("Could not send shutdown request"); self.request("shutdown", "{}", null) catch @panic("Could not send shutdown request");
// waitNoError(self.process) catch @panic("Server error"); waitNoError(self.process) catch @panic("Server error");
// self.process.deinit(); self.process.deinit();
} }
}; };
fn startZls() !*std.ChildProcess { fn startZls() !*std.ChildProcess {
var process = try std.ChildProcess.init(&[_][]const u8{"zig-out/bin/zls" ++ suffix}, allocator); var process = try std.ChildProcess.init(&[_][]const u8{"zig-out/bin/zls" ++ suffix}, allocator);
process.stdin_behavior = .Pipe; process.stdin_behavior = .Pipe;
process.stdout_behavior = .Pipe; process.stdout_behavior = .Inherit;
process.stderr_behavior = .Pipe; //std.ChildProcess.StdIo.Inherit; process.stderr_behavior = .Inherit; //std.ChildProcess.StdIo.Inherit;
process.spawn() catch |err| { process.spawn() catch |err| {
std.debug.print("Failed to spawn zls process, error: {}\n", .{err}); std.debug.print("Failed to spawn zls process, error: {}\n", .{err});