about summary refs log tree commit diff
path: root/src/ci/docker/host-x86_64/dist-powerpc64le-linux
AgeCommit message (Collapse)AuthorLines
2023-07-21ci: Update dist-powerpc64le-linux to ubuntu:22.04Josh Stone-7/+1
2023-07-16CI: build CMake 3.20 to support LLVM 17Jakub Beránek-0/+3
2022-12-06Enable profiler in dist-powerpc64le-linuxPetr Ogarok-1/+1
Build the profiler runtime to allow using -C profile-generate and -C instrument-coverage on POWER systems. I have verified locally that the runtime builds and the profiler is working fine on the platform.
2022-08-03Increase the minimum linux-gnu versionsJosh Stone-15/+4
This is implementing the MCP from rust-lang/compiler-team#493. It is increasing the minimum requirements of a couple Tier 1 targets, and others at lower tiers, so this should go through FCP sign-offs for both `T-compiler` and `T-release`. The new `linux-gnu` baseline is kernel 3.2 and glibc 2.17. We will also take that kernel as the minimum floor for _all_ `*-linux-*` targets, so it may be broadly assumed in the implementation of the standard library. That does not preclude specific targets from having greater requirements where it makes sense, like a new arch needing something newer, or a platform like `linux-android` choosing a newer baseline.
2021-03-01Build newer version of cmake in Docker imagesNikita Popov-0/+3
LLVM requires CMake 3.13.4, which is only available as of Ubuntu 20.04. On images using an older version, build it manually.
2020-11-25Mirror centos vault to S3Mark Rousskov-3/+5
2020-11-06fix shellcheck error of SC2068Daiki Ihara-1/+1
2020-11-06fix shellcheck error of SC2148Daiki Ihara-0/+1
2020-07-03ci: move all x86_64 runners to the host-x86_64 directoryPietro Albini-0/+123
We need to add runners designed for an aarch64 host system, and it'd be nice to return an error message if someone tries to run an image designed for an host architecture in another one. To start the work on this, this commit moves all the existing builders in the host-x86_64 directory, and changes the run.sh script to look up the image in the correct directory based on the host architecture.