Live data from Hacker News

GitHub Having Issues

githubstatus.com

41–43 of 43 posts

Re: GitHub Having Issues

#41
post #10

Earlier quoted context omitted.

Think of the poor grandma yesterday who was finally convinced to get a Facebook account to see the grandkids and right as she hits "create account" Facebook goes down worldwide. No force on earth will convince her she didn't do it.

Then the next day she finally gets around to setting up her GitHub actions and this happens. Now gran really thinks something is up

So yea, hopefully she doesn't buy a plane ticket for the first flight of her life tomorrow.

Re: GitHub Having Issues

#42
post #35
post #34

Earlier quoted context omitted.

On a recent project I am working on tests typically take 60 seconds to run. This is jest with testing-library, with 2000 tests fairly typical setup. On CI it takes about 5 minutes to run. My laptop which while not top of the line is fairly well powered (8core 32 gb) the fan starts spinning and slows down a bit whenever I run the suite. I find both these times incredibly distracting and inefficient. It breaks my conce…

jest has known issues with CI jobs and parallel running. You might want to look into parallelization and the number of workers allocated.

In CI (Github Actions) , as generally is recommended I have limited with max-workers=1. With a single worker 5 min doesn't sound it unreasonably long for 2,000 tests? Most CI runners are going to only give lower performance single core vCPU in their runtime so it doesn't seem too bad time taken for this type of workload.

On my laptop I run 6 tests in parallel. It runs in 60ish seconds however the balance is how much cores I can spare for the workers while still being able to do something else.

The challenge is if you switch to another task you don't come back always after the minute and it takes some time to review and commit, or some tests failed now you are fixing those and also working on other items.

Both tasks go poorly, because after each run you want to go back to other task so sometimes you fix one thing and that breaks something else in the next run, so you keep doing few runs and that new task is going poorly because you are losing focus constantly, the

Or eventually you end up with work that is really few completely different commits getting actually pushed as one big item, If you like frequent atomic commits this is just breaks your flow all the time.

P.S. the pet peeve: when the laptop fans starts spinning hard to handle the work, it feels like the same frustration that I feel when I am out of shape and start huffing and puffing in a simple 2k run.

Re: GitHub Having Issues

#43
post #40

Is https://gist.github.com down for everyone or it's just me? Not able to access it since weeks now.

No problems here. What does it resolve to? A dodgy Adblock rule maybe?

It just tells me "This site can’t be reached - DNS_PROBE_FINISHED_NXDOMAIN"

`host gist.github.com` returns - "Host gist.github.com not found: 5(REFUSED)"

Disabled adblock. Still same. I'm using from India.

Post reply on HN