cargo-tarpaulin: disable aarch64 and i686 build

Those CPU architectures seem to be unsupported as several constructs[1][2]
are only supported for `x86_64`.

[1] https://github.com/xd009642/tarpaulin/blob/d7e0deef8c4fae5d6baeac5a0431ea4d0b5600f9/src/breakpoint.rs#L7-L8
[2] https://github.com/xd009642/tarpaulin/blob/d7e0deef8c4fae5d6baeac5a0431ea4d0b5600f9/src/process_handling/linux.rs#L37
This commit is contained in:
Maximilian Bosch
2020-08-02 13:23:04 +02:00
parent d5077cf8e9
commit 8121647bb5
@@ -25,6 +25,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/xd009642/tarpaulin";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ hugoreeves ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}