about summary refs log tree commit diff
path: root/src/ci/docker/host-x86_64/disabled
AgeCommit message (Collapse)AuthorLines
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.