FYI There is a known issue with CI on main, in whi...
# development
h
FYI There is a known issue with CI on main, in which the new aarch64 wheel deploys to S3 fail. This is because our script that installs the aws cli assumes that it can symlink it into /usr/local/bin inside the manylinux container we run the wheel builds in. But on aarch64 we run as a non-root user in the container (to avoid this issue), so we can't install
aws
that way.
I think the right solution is to build an image based on the manylinux image, but that has
aws
installed. This will also save a little time on the repeat installs.
Will tackle this tomorrow