3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 14:04:07 +00:00

Support "fifo:" make jobserver auth

This commit is contained in:
Jannis Harder 2023-01-10 16:17:49 +01:00
parent 6d3b5aa960
commit 06c36d5bb0

View file

@ -58,15 +58,24 @@ def process_jobserver_environment():
elif flag.startswith("--jobserver-auth=") or flag.startswith("--jobserver-fds="):
inherited_jobserver_auth_present = True
if os.name == "posix":
arg = flag.split("=", 1)[1].split(",")
try:
jobserver_fds = int(arg[0]), int(arg[1])
for fd in jobserver_fds:
fcntl.fcntl(fd, fcntl.F_GETFD)
except (ValueError, OSError):
pass
arg = flag.split("=", 1)[1]
if arg.startswith("fifo:"):
try:
fd = os.open(arg[5:], os.O_RDWR)
except FileNotFoundError:
pass
else:
inherited_jobserver_auth = fd, fd
else:
inherited_jobserver_auth = jobserver_fds
arg = arg.split(",")
try:
jobserver_fds = int(arg[0]), int(arg[1])
for fd in jobserver_fds:
fcntl.fcntl(fd, fcntl.F_GETFD)
except (ValueError, OSError):
pass
else:
inherited_jobserver_auth = jobserver_fds
def jobserver_helper(jobserver_read_fd, jobserver_write_fd, request_fd, response_fd):