about summary refs log tree commit diff
path: root/src/ci/docker/host-x86_64/disabled
AgeCommit message (Collapse)AuthorLines
2023-10-28Remove asmjs from CIJubilee Young-43/+0
2023-07-16CI: build CMake 3.20 to support LLVM 17Jakub Beránek-0/+6
2023-04-17Spelling src/ciJosh Soref-1/+1
* architecture * configures * preparation * toolstate * unknown Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2022-10-29Revert "Make the `c` feature for `compiler-builtins` opt-in instead of inferred"Mark Rousskov-2/+0
This reverts commit 3acb505ee560770c62bad5362f6caf7567d467b9 (PR #101833). The changes in this commit caused several bugs or at least incompatibilies. For now we're reverting this commit and will re-land it alongside fixes for those bugs.
2022-09-28Make the `c` feature for `compiler-builtins` opt-in instead of inferredJoshua Nelson-0/+2
The build script for `compiler_builtins` doesn't support cross-compilation. I tried fixing it, but the cc crate itself doesn't appear to support cross-compiling to windows either unless you use the -gnu toolchain: ``` error occurred: Failed to find tool. Is `lib.exe` installed? ``` Rather than trying to fix it or special-case the platforms without bugs, make it opt-in instead of automatic.
2021-10-21CI: Enable overflow checks for test (non-dist) buildsHans Kratz-0/+1
2021-09-17ci: Add Dockerfile for dist-m68k-linuxJohn Paul Adrian Glaubitz-0/+26
2021-06-23Use HTTPS links where possibleSmitty-1/+1
2021-03-28ci: docker: riscv64gc: specify host explicitlyTom Eccles-1/+1
2020-11-06fix shellcheck error of SC2068Daiki Ihara-2/+2
2020-10-09ci: disabled: riscv: work around QEMU regressionTom Eccles-3/+3
This bumps the version of the bbl bootloader not to perform 64-bit accesses to the PLIC. Doing so resulted in the QEMU test machine to fail to boot: bbl loader ../machine/mtrap.c:21: machine mode: unhandlable trap 7 @ 0x0000000080001f6e Power off Signed-off-by: Tom Eccles <tom.eccles@codethink.co.uk>
2020-09-29Use --host='' instead of --host ''Tyler Mandry-2/+2
Trying to fix a problem in CI. Maybe some version of Docker is not passing '' args correctly?
2020-09-28Update CI scripts to accommodate --host changeTyler Mandry-2/+2
2020-08-26Install ninja on CI buildersJosh Triplett-0/+6
Windows CI builds already install ninja. Install it in all the Docker-based builds as well.
2020-07-27Use --stage 2 explicitly in CIJoshua Nelson-4/+4
- expand yaml anchors - don't use --stage 2 for dist; that's already the default
2020-07-08ci: disabled: riscv: minimise docker overlaysTom Eccles-3/+3
Suggested by @bjorn3 Every RUN command creates a new overlay on top of the image as of before the RUN command. Using fewer RUN commands prevents intermediate overlays (which in this case would have contained the entire Linux source tree).
2020-07-03ci: remove the emulated aarch64-gnu imagePietro Albini-3179/+0
2020-07-03ci: move all x86_64 runners to the host-x86_64 directoryPietro Albini-0/+4030
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.