Skip to content

Commit d27655a

Browse files
committed
debug
1 parent 51482c0 commit d27655a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ jobs:
398398
runner_os = "${{ matrix.os }}"
399399
print(runner_os)
400400
print(github_output)
401-
if "macos" in runner_os:
401+
if "windows" in runner_os:
402402
time.sleep(1)
403403
print("Failed")
404404
with open(github_output, 'a') as output_file:
@@ -860,23 +860,23 @@ jobs:
860860
from pathlib import Path
861861
862862
print("Checking required checks")
863-
print(os.environ['NEEDS'])
863+
print(os.environ["NEEDS"])
864864
865-
jobs = json.loads(os.environ['NEEDS'])
865+
jobs = json.loads(os.environ["NEEDS"])
866866
job_names = sorted(jobs.keys())
867867
for job_name in job_names:
868-
result = jobs[job_name]['result']
868+
result = jobs[job_name]["result"]
869869
print(f"- {job_name}: {result}")
870870
print()
871871
872872
failed = False
873873
for job_name in job_names:
874-
result = jobs[job_name]['result']
875-
874+
result = jobs[job_name]["result"]
875+
876876
# Skip test-go-pg failures on windowsx
877877
if job_name == "test-go-pg" and result == "failure":
878878
failed_artifacts = list(Path("pg_failed").glob("pg_failed_*"))
879-
if len(failed_artifacts) == 1 and "windows" in str(failed_artifacts[0].name):
879+
if len(failed_artifacts) == 1 and "windows" in str(failed_artifacts[0].name):
880880
continue
881881
if result in ["failure", "cancelled"]:
882882
failed = True

0 commit comments

Comments
 (0)