Compare commits

...

5 Commits

Author SHA1 Message Date
David Abdurachmanov e6a8a6bfaa
Disable bootstrap
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-11-27 20:33:37 +02:00
David Abdurachmanov b01f0564c3
Merge remote-tracking branch 'up/f37' into f37-riscv64
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-11-27 20:32:57 +02:00
David Abdurachmanov 487ddf2180
Ignore test_eintr on riscv64 for now
[..]
Exception: failed to sync child in 300.3 sec
[..]

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-11-27 07:36:39 +02:00
David Abdurachmanov 7ed8b3ebc5
Increase timeout
30 min is not enough on SiFive HiFive Unmatched anymore starting 3.12.

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-11-26 19:41:01 +02:00
David Abdurachmanov fde5cf04dd
Bootstrap on riscv64
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2022-11-15 09:03:33 +02:00
1 changed files with 9 additions and 2 deletions

View File

@ -17,7 +17,7 @@ URL: https://www.python.org/
%global prerel a2
%global upstream_version %{general_version}%{?prerel}
Version: %{general_version}%{?prerel:~%{prerel}}
Release: 1%{?dist}
Release: 1.0.riscv64%{?dist}
License: Python-2.0.1
# Getting this build in Koji on 32bit ARM is frustrating due to technical problems
@ -1070,8 +1070,11 @@ CheckPython() {
# we don't ship it in the RPM package.
LD_LIBRARY_PATH=$ConfDir $ConfDir/python -m test.regrtest \
-wW --slowest -j0 --timeout=1800 \
-wW --slowest -j0 --timeout=7200 \
-i test_freeze_simple_script \
%ifarch riscv64
-x test_eintr \
%endif
%ifarch %{mips64}
-x test_ctypes \
%endif
@ -1576,6 +1579,10 @@ CheckPython optimized
# ======================================================
%changelog
* Sun Nov 27 2022 David Abdurachmanov <davidlt@rivosinc.com> - 3.12.0~a2-1.0.riscv64
- Ignore test_eintr test on riscv64
- Bootstrap on riscv64
* Tue Nov 15 2022 Tomáš Hrnčiar <thrnciar@redhat.com> - 3.12.0~a2-1
- Update to 3.12.0a2
- Fixes: rhbz#2133847