Joe Previte
Joe Previte
How are you starting code-server?
Can you share the contents of `config.yaml`? (make sure to redact the password)
Thanks! Hmm...if you access directly (no nginx) does it work as expected?
Can you reproduce this on Codespaces? I would guess this state is stored in the browser rather than the server so I don't know if there's much we can do...
@ChiatzenW thanks for offering to help! I would start [here](https://github.com/coder/code-server/actions/runs/3025644589). This is a successful run of Build and it took 32m. If you look through each job, you can see...
> I'm guessing we cannot skip the tests? As of current I see that various tests take up majority of the time and looks like aside from that we have...
That could work! We do something similar in coder/coder using a GitHub Action which might be a simpler approach: https://github.com/coder/coder/blob/main/.github/workflows/coder.yaml#L59-L76 > I believe tsc -w --extendedDiagnostics can show files that...
@ChiatzenW great find! Yes, I'd say that seems like a good first step. Look at `ci.yaml` and see which steps could benefit from caching 👍🏼
I like those suggestions! > I forget; did we test using multiple workers on the e2e tests? That might speed things up. I think so and I don't think it...
Ahh I see the comment: https://github.com/coder/code-server/blob/main/.github/workflows/ci.yaml#L214-L216 I think we can ignore for now. > Is applying caching similar to cache-code OK or is there any further scripts that needs to...