about summary refs log tree commit diff
path: root/src/ci/docker/host-x86_64/dist-s390x-linux
AgeCommit message (Collapse)AuthorLines
2023-04-26ci: refactor crosstool-ng to use mini-defconfigJosh Stone-807/+16
2023-04-26ci: upgrade to crosstool-ng 1.25.0Josh Stone-76/+120
2023-01-20Enable sanitizers for s390x-linuxUlrich Weigand-1/+1
Include sanitizers supported by LLVM on s390x (asan, lsan, msan, tsan) in the target definition, as well as in the compiletest supported list. Build sanitizer runtime for the target. Enable sanitizers in the CI.
2022-11-11Enable profiler in dist-s390x-linuxUlrich Weigand-1/+1
Build the profiler runtime to allow using -C profile-generate and -C instrument-coverage on s390x-linux. I've verified in a local build that the runtime builds and the profiler is working fine on the platform.
2022-08-03Increase the minimum linux-gnu versionsJosh Stone-94/+41
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.
2022-02-26Update dist-s390x-dist imageNikita Popov-291/+472
Update to Ubuntu 20.04 and crosstool-ng 1.24.0. I've updated the ct-ng config and then manually reset the kernel and glibc versions to the oldest supported. Specifically, we're updating from kernel 2.6.32.68 to 2.6.32.71 and glibc 2.11.1 to 2.12.1 here. The compiler toolchain is also updated, but I don't think that's relevant for compatibility.
2021-10-08CI: Use mirror for downloads.Hans Kratz-1/+2
Crosstool-ng 1.22 used by those docker dist builds only allows one mirror for all downloads.
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-06fix shellcheck error of SC2068Daiki Ihara-1/+1
2020-07-23Downgrade glibc to 2.11.1 for ppc, ppc64 and s390xMartin Sirringhaus-3/+3
2020-07-03ci: move all x86_64 runners to the host-x86_64 directoryPietro Albini-0/+658
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.