Finally done: with this PR, you can open a VS Code...
# development
e
Finally done: with this PR, you can open a VS Code dev container straight off the
main
branch, including on ARM64, and all tests will pass if you run
./pants test ::
. Note that on older machines you probably need to extend timeouts, e.g.
Copy code
./pants test :: --no-test-timeouts --test-timeout-default=2400
https://github.com/pantsbuild/pants/pull/22094
🎉 2
@happy-kitchen-89482 I merged latest main to the PR, included your requested small improvement to simplify
cgo_test,py
and also addressed the CI failure seen yesterday. You can merge whenever ready assuming all clean in CI.
cgo_test.py
still failing with `StorageFull`:
Copy code
E       native_engine.IntrinsicError: Error making tempdir for local process execution: Custom { kind: StorageFull, error: PathError { path: "/tmp/pants-sandbox-91D4sQ", err: Os { code: 28, kind: StorageFull, message: "No space left on device" } } }
This patch upgrades a dependency and probably is loading more Go modules than before. Is there a way to increase space allocated to the runner so this test can pass?
h
No space left on device is a bonkers error to get, and tells me that this test probably needs revisiting
These are running on the free linux x86_64 runners, so I don’t think we can ask for more space
might have to revert just that part?
e
Sure, I’ll back it out and add the recently-added @skip_if_linux_arm64 on that test for now.