See example here: https://github.com/iiasa/climate-assessment/actions/runs/18611100199/job/53069336906.
Job output:
--2025-10-18 05:02:47-- http://***
Resolving www.magicc.org (www.magicc.org)... 13.52.188.95, 52.52.192.191, 2600:1f1c:446:4900::259, ...
Connecting to www.magicc.org (www.magicc.org)|13.52.188.95|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://*** [following]
--2025-10-18 05:02:48-- https://***
Connecting to www.magicc.org (www.magicc.org)|13.52.188.95|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://magicc.org/api/download?type=MAGICC7&*** [following]
--2025-10-18 05:02:48-- https://magicc.org/api/download?type=MAGICC7&***
Resolving magicc.org (magicc.org)... 75.2.60.5
Connecting to magicc.org (magicc.org)|75.2.60.5|:443... connected.
Unable to establish SSL connection.
Error: Process completed with exit code 4.
What's weird is that sometimes it works, sometimes it does not.
Since we're running the tests for python 3.11, 3.12 and 3.13 in parallel, one quick hypothesis would be that maybe hitting the MAGICC download endpoint three times in rapid succession causes some kind of issue. If that is in fact the issue, I would see two potential remedies:
- Limit the number of concurrent jobs to 1 (as described here: https://docs.github.com/en/actions/how-tos/write-workflows/choose-what-workflows-do/run-job-variations#defining-the-maximum-number-of-concurrent-jobs)
- Download MAGICC only once and then provide it to the three parallel jobs.
@znicholls and @lewisjared do you guys have an idea?
See example here: https://github.com/iiasa/climate-assessment/actions/runs/18611100199/job/53069336906.
Job output:
What's weird is that sometimes it works, sometimes it does not.
Since we're running the tests for python 3.11, 3.12 and 3.13 in parallel, one quick hypothesis would be that maybe hitting the MAGICC download endpoint three times in rapid succession causes some kind of issue. If that is in fact the issue, I would see two potential remedies:
@znicholls and @lewisjared do you guys have an idea?