-
-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt at fixing cross compilations
- Loading branch information
1 parent
a22afa3
commit 93ccf65
Showing
1 changed file
with
99 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,78 +16,85 @@ | |
} | ||
}, | ||
"jobs": { | ||
"test_cross": { | ||
"name": "Cross platform test", | ||
"test_cross_std": { | ||
"name": "Cross platform test (platforms with standard library)", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { | ||
"fail-fast": false, | ||
"matrix": { | ||
"platform": [ | ||
# Tier 1 | ||
"aarch64-unknown-linux-gnu", | ||
"i686-pc-windows-gnu", | ||
"i686-pc-windows-msvc", | ||
"i686-unknown-linux-gnu", | ||
"x86_64-apple-darwin", | ||
"x86_64-pc-windows-gnu", | ||
"x86_64-pc-windows-msvc", | ||
"x86_64-unknown-linux-gnu", | ||
|
||
# Tier 2 | ||
"aarch64-apple-darwin", | ||
"aarch64-pc-windows-msvc", | ||
"aarch64-unknown-linux-musl", | ||
"arm-linux-androideabi", | ||
"arm-unknown-linux-gnueabi", | ||
"arm-unknown-linux-gnueabihf", | ||
"armv7-unknown-linux-gnueabihf", | ||
"loongarch64-unknown-linux-gnu", | ||
"mips-unknown-linux-gnu", | ||
"mips64-unknown-linux-gnuabi64", | ||
"mips64el-unknown-linux-gnuabi64", | ||
"mipsel-unknown-linux-gnu", | ||
"powerpc-unknown-linux-gnu", | ||
"powerpc64-unknown-linux-gnu", | ||
"powerpc64le-unknown-linux-gnu", | ||
"riscv64gc-unknown-linux-gnu", | ||
"s390x-unknown-linux-gnu", | ||
"x86_64-unknown-freebsd", | ||
"x86_64-unknown-illumos", | ||
"x86_64-unknown-linux-musl", | ||
"x86_64-unknown-netbsd" | ||
|
||
# Tier 3, only those that have std | ||
"aarch64-apple-ios", | ||
"aarch64-apple-ios-sim", | ||
"aarch64-fuchsia", | ||
"aarch64-unknown-fuchsia", | ||
"aarch64-linux-android", | ||
"arm-linux-androideabi", | ||
"arm-unknown-linux-musleabi", | ||
"arm-unknown-linux-musleabihf", | ||
"armv5te-unknown-linux-gnueabi", | ||
"armv5te-unknown-linux-musleabi", | ||
"armv7-linux-androideabi", | ||
"armv7-unknown-linux-gnueabihf", | ||
"armv7-unknown-linux-gnueabi", | ||
"armv7-unknown-linux-musleabi", | ||
"armv7-unknown-linux-musleabihf", | ||
|
||
# BlockedTODO: https://github.com/chronotope/chrono/issues/674 | ||
# Fixed in https://github.com/chronotope/chrono/pull/593 | ||
# "asmjs-unknown-emscripten", | ||
|
||
# These seem to fail on `-lunwind` not being available | ||
# "i686-linux-android", | ||
# "x86_64-linux-android", | ||
|
||
"asmjs-unknown-emscripten", | ||
"i586-unknown-linux-gnu", | ||
"i586-unknown-linux-musl", | ||
"i686-unknown-linux-gnu", | ||
"i686-linux-android", | ||
"i686-unknown-freebsd", | ||
"i686-unknown-linux-musl", | ||
"mips-unknown-linux-gnu", | ||
"mips-unknown-linux-musl", | ||
"mips64-unknown-linux-gnuabi64", | ||
"mips64el-unknown-linux-gnuabi64", | ||
"mipsel-unknown-linux-gnu", | ||
"mips64-unknown-linux-muslabi64", | ||
"mips64el-unknown-linux-muslabi64", | ||
"mipsel-unknown-linux-musl", | ||
"powerpc-unknown-linux-gnu", | ||
|
||
# Seems to have a bug in qemu, where all floats are `0.0` and aren't equal with each other | ||
# "powerpc64le-unknown-linux-gnu", | ||
|
||
"riscv64gc-unknown-linux-gnu", | ||
"s390x-unknown-linux-gnu", | ||
|
||
# Seems to not be able to link to certain files | ||
# - cannot find -lsendfile | ||
# - cannot find -llgrp | ||
# "sparcv9-sun-solaris", | ||
|
||
# These have no `std` | ||
# "thumbv6m-none-eabi", | ||
# "thumbv7em-none-eabi", | ||
# "thumbv7em-none-eabihf", | ||
# "thumbv7m-none-eabi", | ||
|
||
# BlockedTODO: https://github.com/chronotope/chrono/issues/674 | ||
# Fixed in https://github.com/chronotope/chrono/pull/593 | ||
# "wasm32-unknown-emscripten", | ||
|
||
# Seems to not be able to link to certain files | ||
# - cannot find -lsendfile | ||
# - cannot find -llgrp | ||
# "x86_64-sun-solaris", | ||
|
||
"x86_64-unknown-linux-gnu", | ||
"x86_64-unknown-linux-musl", | ||
|
||
# Seems to immediately bail | ||
# error: test failed, to rerun pass '--lib' | ||
# could not execute process `...` (never executed) | ||
# "x86_64-unknown-netbsd", | ||
"sparc64-unknown-linux-gnu", | ||
"sparcv9-sun-solaris", | ||
"thumbv7neon-linux-androideabi", | ||
"thumbv7neon-unknown-linux-gnueabihf", | ||
"wasm32-unknown-emscripten", | ||
"wasm32-unknown-unknown", | ||
"wasm32-wasi", | ||
"x86_64-apple-ios", | ||
"x86_64-fortanix-unknown-sgx", | ||
"x86_64-fuchsia", | ||
"x86_64-unknown-fuchsia", | ||
"x86_64-linux-android", | ||
"x86_64-pc-solaris", | ||
"x86_64-unknown-linux-gnux32", | ||
"x86_64-unknown-redox", | ||
] | ||
} | ||
}, | ||
|
@@ -122,17 +129,39 @@ | |
} | ||
] | ||
}, | ||
"test_windows": { | ||
"name": "Cross platform test", | ||
"runs-on": "windows-latest", | ||
"test_cross_no_std": { | ||
"name": "Cross platform test (no_std, platforms without standard library)", | ||
"runs-on": "ubuntu-latest", | ||
"strategy": { | ||
"fail-fast": false, | ||
"matrix": { | ||
"platform": [ | ||
# linker `i686-w64-mingw32-gcc` not found | ||
# "i686-pc-windows-gnu", | ||
|
||
"x86_64-pc-windows-gnu", | ||
# Tier 3 | ||
"aarch64-unknown-none-softfloat", | ||
"aarch64-unknown-none", | ||
"aarch64-unknown-uefi", | ||
"armebv7r-none-eabi", | ||
"armebv7r-none-eabihf", | ||
"armv7a-none-eabi", | ||
"armv7r-none-eabi", | ||
"armv7r-none-eabihf", | ||
"i586-pc-windows-msvc", | ||
"i686-unknown-uefi", | ||
"nvptx64-nvidia-cuda", | ||
"riscv32i-unknown-none-elf", | ||
"riscv32imac-unknown-none-elf", | ||
"riscv32imc-unknown-none-elf", | ||
"riscv64gc-unknown-none-elf", | ||
"riscv64imac-unknown-none-elf", | ||
"thumbv6m-none-eabi", | ||
"thumbv7em-none-eabi", | ||
"thumbv7em-none-eabihf", | ||
"thumbv7m-none-eabi | ||
"thumbv8m.base-none-eabi", | ||
"thumbv8m.main-none-eabi", | ||
"thumbv8m.main-none-eabihf | ||
"x86_64-unknown-none", | ||
"x86_64-unknown-uefi", | ||
] | ||
} | ||
}, | ||
|
@@ -146,16 +175,23 @@ | |
"with": { | ||
"profile": "minimal", | ||
"toolchain": "stable", | ||
"target": "${{ matrix.platform }}", | ||
"override": true | ||
}, | ||
"name": "Install Rust stable" | ||
}, | ||
{ | ||
"run": "cargo test --target ${{ matrix.platform }}", | ||
"uses": "actions-rs/[email protected]", | ||
"with": { | ||
"crate": "cross" | ||
}, | ||
"name": "Install cargo cross" | ||
}, | ||
{ | ||
"run": "cross test --target ${{ matrix.platform }} --no-default-features --features alloc,derive", | ||
"name": "Run tests", | ||
"env": { | ||
"RUSTFLAGS": "-D warnings" | ||
"RUSTFLAGS": "-D warnings", | ||
"RUST_BACKTRACE": "1", | ||
} | ||
} | ||
] | ||
|