We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3029c8 commit 9ae3719Copy full SHA for 9ae3719
scikit-ci.yml
@@ -56,7 +56,12 @@ before_install:
56
# Remove this after addressing https://github.com/dockcross/dockcross/issues/431
57
setup_cmake_args.append("-DOPENSSL_ROOT_DIR:PATH=/tmp/openssl-install")
58
os.environ["SETUP_CMAKE_ARGS"] = " ".join(setup_cmake_args)
59
- os.environ["SETUP_MAKE_ARGS"] = "-j$(nproc)"
+ if platform.machine() in {"ppc64le"}:
60
+ # the container sees all 16 threads but building with all of them
61
+ # triggers the OoM killer due to RAM limitations
62
+ os.environ["SETUP_MAKE_ARGS"] = "-j4"
63
+ else:
64
+ os.environ["SETUP_MAKE_ARGS"] = "-j$(nproc)"
65
ci.driver.Driver.save_env(os.environ)
66
67
install:
0 commit comments