mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
Support "fifo:" make jobserver auth
This commit is contained in:
parent
6d3b5aa960
commit
06c36d5bb0
|
@ -58,15 +58,24 @@ def process_jobserver_environment():
|
||||||
elif flag.startswith("--jobserver-auth=") or flag.startswith("--jobserver-fds="):
|
elif flag.startswith("--jobserver-auth=") or flag.startswith("--jobserver-fds="):
|
||||||
inherited_jobserver_auth_present = True
|
inherited_jobserver_auth_present = True
|
||||||
if os.name == "posix":
|
if os.name == "posix":
|
||||||
arg = flag.split("=", 1)[1].split(",")
|
arg = flag.split("=", 1)[1]
|
||||||
try:
|
if arg.startswith("fifo:"):
|
||||||
jobserver_fds = int(arg[0]), int(arg[1])
|
try:
|
||||||
for fd in jobserver_fds:
|
fd = os.open(arg[5:], os.O_RDWR)
|
||||||
fcntl.fcntl(fd, fcntl.F_GETFD)
|
except FileNotFoundError:
|
||||||
except (ValueError, OSError):
|
pass
|
||||||
pass
|
else:
|
||||||
|
inherited_jobserver_auth = fd, fd
|
||||||
else:
|
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):
|
def jobserver_helper(jobserver_read_fd, jobserver_write_fd, request_fd, response_fd):
|
||||||
|
|
Loading…
Reference in a new issue