Skip to content

Commit 7ccf0f6

Browse files
authored
Update poll_quick_ci.py
1 parent cda8a3f commit 7ccf0f6

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

scripts/helpers/poll_quick_ci.py

+23-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,36 @@
11
import argparse
22
import logging
33
import subprocess
4+
import time
45

56
def main():
67
parser = argparse.ArgumentParser()
78
parser.add_argument("pr", help="Pull request number")
89
parser.add_argument("check", help="Pull request check to poll for")
910
args = parser.parse_args()
1011

11-
logging.info("Gathering info on checks being run for the current pull request.")
12-
for line in subprocess.run(f"gh pr checks -R project-chip/connectedhomeip {args.pr}", stdout=subprocess.PIPE, shell=True).stdout.decode("utf-8").splitlines():
13-
if args.check in line:
14-
print(line)
12+
logging.info(f"Gathering info on the {args.check} check being run for the current pull request.")
13+
polling = True
14+
poll_count = 0
15+
poll_max = 300
16+
check_passed = False
17+
while(polling):
18+
for line in subprocess.run(f"gh pr checks -R project-chip/connectedhomeip {args.pr}", stdout=subprocess.PIPE, shell=True).stdout.decode("utf-8").splitlines():
19+
if args.check in line:
20+
logging.info(line)
21+
if "pending" in line:
22+
if poll_count == poll_max:
23+
polling = false
24+
else:
25+
poll_count += 1
26+
time.sleep(1)
27+
break
28+
elif "pass" in line:
29+
polling = False
30+
logging.info("Fast CI {args.check} has passed; if all fast CI passes, builds and tests may commence.")
31+
exit(0)
32+
logging.info(f"Polling for completion of fast CI {args.check} failed. Please ensure the name of the check was entered correctly and verify that it should take less than {poll_max} seconds to run.")
33+
exit(1)
1534

1635
if __name__ == "__main__":
1736
main()

0 commit comments

Comments
 (0)