| Commit message (Collapse) | Author | Lines |
|
This will be helpful in testing, since some machines are able to
process quite a lot in one second, which was the previous lowest
timeout.
|
|
Mount /dev/shm in the container by setting ipc to "private". This is
the same as "none" (the previous value) with the only difference being
that shm is mounted. This is needed for integration tests to pass.
The integration tests always relied on shared memory due to their use of
multiprocessing. They managed to work because glibc used to fall back to
/tmp if /dev/shm wasn't available. However, newer versions of glibc,
which Debian Bookworm now uses, removed that fallback behaviour.
|
|
|
|
3.11.5 requires at least pyenv 2.3.25, so bumped to latest (2.3.26) for good measure anyway.
3.12.0rc2 requires pyenv 2.3.25
|
|
|
|
* Make CI and deployment.yaml share the same dependency install script
* squashme: add set -euo pipefail as sane defaults
This also requires running under bash rather than sh
* squashme: add make target for installing eval deps
|
|
|
|
|
|
|
|
|
|
Switch from using a post-start hook to using an init container to install dependencies on all configured versions
|