Temporarily turn off the tests, optimizations and debug build

For faster development of the Platform-Python stack
This commit is contained in:
Tomas Orsava 2017-10-24 11:05:18 +02:00
parent af5fb68888
commit df43cbbde3
1 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ License: Python
# Expensive optimizations (mainly, profile-guided optimizations) # Expensive optimizations (mainly, profile-guided optimizations)
%ifarch %{ix86} x86_64 %ifarch %{ix86} x86_64
%bcond_without optimizations %bcond_with optimizations
%else %else
# On some architectures, the optimized build takes tens of hours, possibly # On some architectures, the optimized build takes tens of hours, possibly
# longer than Koji's 24-hour timeout. Disable optimizations here. # longer than Koji's 24-hour timeout. Disable optimizations here.
@ -38,14 +38,14 @@ License: Python
%endif %endif
# Run the test suite in %%check # Run the test suite in %%check
%bcond_without tests %bcond_with tests
# Ability to reuse RPM-installed pip using rewheel # Ability to reuse RPM-installed pip using rewheel
%bcond_without rewheel %bcond_without rewheel
# Extra build for debugging the interpreter or C-API extensions # Extra build for debugging the interpreter or C-API extensions
# (the -debug subpackages) # (the -debug subpackages)
%bcond_without debug_build %bcond_with debug_build
# Support for the GDB debugger # Support for the GDB debugger
%bcond_without gdb_hooks %bcond_without gdb_hooks