skip doctests on armv7hl due to rustc / LLVM 14 crashes

This commit is contained in:
Fabio Valentini 2022-07-15 14:20:05 +02:00
parent 1b4039646f
commit b49b98ab8c
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF
1 changed files with 10 additions and 1 deletions

View File

@ -5,7 +5,7 @@
Name: rust-%{crate}
Version: 0.8.7
Release: 4%{?dist}
Release: 5%{?dist}
Summary: Helps you pick items from a list by various algorithms
# Upstream license specification: GPL-3.0
@ -89,10 +89,19 @@ use the "default" feature of the "%{crate}" crate.
%if %{with check}
%check
%ifarch %{arm}
# * skip doctests on armv7hl due to rustc / LLVM 14 crashes:
# https://bugzilla.redhat.com/show_bug.cgi?id=2086106
%cargo_test -- --lib
%else
%cargo_test
%endif
%endif
%changelog
* Fri Jul 15 2022 Fabio Valentini <decathorpe@gmail.com> - 0.8.7-5
- Skip doctests on armv7hl due to rustc / LLVM 14 crashes.
* Fri Jul 15 2022 Fabio Valentini <decathorpe@gmail.com> - 0.8.7-4
- Bump mockall dev-dependency from 0.10 to 0.11.