NixOS-based container for running GitHub actions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

more debugging

+1 -11
-1
flake.nix
··· 543 543 "GIT_SSL_CAINFO=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt" 544 544 "NIX_SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt" 545 545 "NIX_PATH=/nix/var/nix/profiles/per-user/root/channels:/root/home/.nix-defexpr/channels" 546 - "NIX_REMOTE=daemon" 547 546 "MEMORYTEST=${lib.getExe' execas-github "memorytest"}" 548 547 ]; 549 548 };
+1
src/lib/env.zig
··· 40 40 .user => { 41 41 try new.put("USER", options.username); 42 42 try new.put("HOME", "/github/home"); 43 + try new.put("NIX_REMOTE", "daemon"); 43 44 }, 44 45 } 45 46
-10
src/tail.zig
··· 49 49 } 50 50 51 51 try lib.exec(init.gpa, options.nix_daemon, &.{ "nix-daemon", "--daemon" }, &environ_map); 52 - // const err = std.process.replace(io, .{ 53 - // .argv = &.{ 54 - // options.nix, 55 - // "daemon", 56 - // }, 57 - // .environ_map = &environ_map, 58 - // }); 59 - 60 - // std.debug.print("unable to execute: {t}\n", .{err}); 61 - // return; 62 52 } 63 53 64 54 var environ_map = try lib.fixupEnvironMap(arena, init.environ_map, .user);