about summary refs log tree commit diff
path: root/library/stdarch/ci/docker/aarch64-unknown-linux-gnu/Dockerfile
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-07-16Update Docker OS to Ubuntu-25.10sayantn-1/+1
2025-04-20Add `test-everything` annotations to more archs to ensure test coverage, and ↵sayantn-1/+2
some small changes to make CI pass - Disable `vsx` tests for `ppc` and `ppc64` - Disable `tme` tests for `aarch64` and `aarch64_be` - Disable `frecipe` tests for `loongarch64` - Add `altivec` run for PPC32 (with `-C target-feature=+vsx` `qemu` gives a nasty error)
2025-04-20Upgrade qemu CPU to `max`sayantn-1/+1
- `ppc32` doesn't have `max` cpu model, so set it to `mpc8610`
2025-04-20Upgrade CI OS versionssayantn-1/+1
+ Bump ubuntu to 25.04, windows to `windows-2025`, macos-arm to `macos-15` and macos-x86 to `macos-15-large`
2025-02-24update clang to clang-19James Barford-Evans-1/+1
2024-06-29Fixing CIsayantn-1/+1
Fixed x86_64-apple-darwin freezing. Bump all docker to Ubuntu-24.04 (except for emulated and armv7)
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/+2
2021-09-09Intrinsic test tool to compare neon intrinsics with C (#1170)Jamie Cunliffe-1/+5
2020-05-29feature detectionMahmut Bulut-1/+1
2019-02-23Upgrade EOL docker images to Ubuntu 18.04Mateusz Mikuła-1/+1
2017-11-17[arm] runtime-detection supportgnzlbg-0/+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.