We have a pipeline that looks like (abbreviated):
commands:
setup-project:
description: Set up the executor and install packages.
steps:
- checkout
- run:
name: Install Packages
command: |
: system
sudo apt update
sudo apt install default-libmysqlclient-dev pkg-config
pyenv global 3.11
jobs:
code build and test:
machine:
image: ubuntu-2204:current
docker_layer_caching: true
resource_class: arm.medium
steps:
- setup-project
about 24 hrs ago we started getting failures from “Install Packages” step like:
...
Processing triggers for libc-bin (2.35-0ubuntu3.6) ...
Scanning processes...
Scanning linux images...
Running kernel seems to be up-to-date.
No services need to be restarted.
No containers need to be restarted.
No user sessions are running outdated binaries.
No VM guests are running outdated hypervisor (qemu) binaries on this host.
pyenv: version `3.11' not installed
Exited with code exit status 1
What’s up with that?