about summary refs log tree commit diff
path: root/src/ci/docker/host-x86_64/x86_64-gnu-nopt
AgeCommit message (Collapse)AuthorLines
2025-06-16Fix `-nopt` CI jobsJakub Beránek-5/+1
They were using `--config` instead of `--set`, which overrides too much stuff.
2025-05-30use stage 1 for std on CIonur-ozkan-1/+1
Signed-off-by: onur-ozkan <work@onurozkan.dev>
2023-07-21ci: Update x86_64-gnu-nopt to ubuntu:22.04Josh Stone-5/+3
2023-07-16CI: build CMake 3.20 to support LLVM 17Jakub Beránek-0/+3
2022-12-02reduce docker image sizes by cleaning cache/squashing stepsklensy-1/+2
2020-12-10ci: use 20.04 on x86_64-gnu-nopt builderDavid Wood-2/+3
This commit switches the x86_64-gnu-nopt builder to use Ubuntu 20.04, which contains a more recent gdb version than Ubuntu 16.04 (newer gdb versions fix a bug that Split DWARF can trigger, see rust-lang/rust#77177 for motivation). x86_64-gnu-nopt is chosen because it runs compare modes, which is how Split DWARF testing is implemented in rust-lang/rust#77177. Signed-off-by: David Wood <david@davidtw.co>
2020-08-26Install ninja on CI buildersJosh Triplett-0/+1
Windows CI builds already install ninja. Install it in all the Docker-based builds as well.
2020-08-13Add no-opt standard library buildersDylan MacKenzie-1/+6
We already have builders which built standard library *test*s without optimizations, but we previously did not have builders which built the standard library itself without optimizations and then tested that. This adds those builds for i686 and x86_64 linux.
2020-07-27Use --stage 2 explicitly in CIJoshua Nelson-1/+1
- expand yaml anchors - don't use --stage 2 for dist; that's already the default
2020-07-03ci: move all x86_64 runners to the host-x86_64 directoryPietro Albini-0/+24
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.