about summary refs log tree commit diff
path: root/library/stdarch/ci/docker/armv7-unknown-linux-gnueabihf
AgeCommit message (Collapse)AuthorLines
2025-07-16Bump versions in CIsayantn-1/+1
- `clang-19` -> `clang-20` in ARM - `gcc-14.2` -> `gcc-14.3` in AArch64-BE - `gcc-14` ->`gcc-15` in LA64 - `riscv-gnu-v2025.01.20` -> `riscv-gnu-v2025.07.03` in Risc-V 32 - `wasmtime-v18.0.2` -> `wasmtime-v34.0.1`
2025-04-20Upgrade qemu CPU to `max`sayantn-1/+1
- `ppc32` doesn't have `max` cpu model, so set it to `mpc8610`
2025-02-24update clang to clang-19James Barford-Evans-2/+2
2023-05-15Remove ACLE submoduleAdam Gemmell-1/+1
This involves moving from the ACLE intrinsic definitions (which aren't available for SVE at this point) to a JSON file. This was derived from ARM's documentation[^1], and then relicensed under `MIT OR Apache-2.0` for use in this repository. [^1]: https://developer.arm.com/architectures/instruction-sets/intrinsics
2022-08-12Update ubuntu 21.10 docker containers to 22.04Amanieu d'Antras-1/+1
Ubuntu 22.10 is EOL.
2021-12-04Update the intrinsic checker tool (#1258)Amanieu d'Antras-2/+6
2019-02-23Upgrade EOL docker images to Ubuntu 18.04Mateusz MikuĊ‚a-1/+1
2017-09-21Add CI for more platformsAlex Crichton-0/+13
This commit adds CI for a few more targets: * i686-unknown-linux-gnu * arm-unknown-linux-gnueabihf * armv7-unknown-linux-gnueabihf * aarch64-unknown-linux-gnu The CI here is structured around using a Docker container to set up a test environment and then QEMU is used to actually execute code from these platforms. QEMU's emulation actually makes it so we can continue to just use `cargo test`, as processes can be spawned from QEMU like `objdump` and files can be read (for libbacktrace). Ends up being a relatively seamless experience! Note that a number of intrinsics were disabled on i686 because they were failing tests, and otherwise a few ARM touch-ups were made to get tests passing.