Disable tests on s390x for now

- Works around RHBZ#2283132
epel10
Benjamin A. Beasley 9 months ago
parent afbcc91a7e
commit d92820113e

@ -101,8 +101,12 @@ use the "zlib" feature of the "%{crate}" crate.
%if %{with check} %if %{with check}
%check %check
# Cannot compile tests on s390x because we cannot compile proptest-derive:
# https://bugzilla.redhat.com/show_bug.cgi?id=2283132
%ifnarch s390x
%cargo_test %cargo_test
%endif %endif
%endif
%changelog %changelog
%autochangelog %autochangelog

@ -7,3 +7,13 @@ cargo-install-bin = false
hide = [ hide = [
"nightly", "nightly",
] ]
[scripts.check]
pre = [
"# Cannot compile tests on s390x because we cannot compile proptest-derive:",
"# https://bugzilla.redhat.com/show_bug.cgi?id=2283132",
"%ifnarch s390x",
]
post = [
"%endif",
]

Loading…
Cancel
Save