From 0e019ca167404aadb276925d5ff9a1906f8aa06a Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Dec 10 2020 15:45:18 +0000 Subject: temporarily disable doctests on aarch64 --- diff --git a/rust-clap.spec b/rust-clap.spec index 8b37164..50bc04c 100644 --- a/rust-clap.spec +++ b/rust-clap.spec @@ -6,7 +6,7 @@ Name: rust-%{crate} Version: 2.33.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Simple to use, efficient, and full-featured Command Line Argument Parser # Upstream license specification: MIT @@ -239,10 +239,19 @@ which use "yaml-rust" feature of "%{crate}" crate. %if %{with check} %check +%ifnarch aarch64 %cargo_test +%else +# rustdoc fails to compile some doctests on aarch64 +# https://bugzilla.redhat.com/show_bug.cgi?id=1902663 +%cargo_test -- --lib +%endif %endif %changelog +* Thu Dec 10 2020 Fabio Valentini - 2.33.3-4 +- Temporarily disable doctests on aarch64. + * Wed Nov 25 2020 Fabio Valentini - 2.33.3-3 - Remove features that have broken dependencies or are nightly-only.