Skip to content

Commit 3292a47

Browse files
Krishna Paifacebook-github-bot
authored andcommitted
fix: Increase base machine for ubuntu resolve dependencies
Summary: We are currently seeing OOM's when building presto_sql_test (See issue : 16202) . There are several ways to fix this, * Get beefier machines (More costly on our CI Budget) * Refactor presto_sql_tests (Based on some cmake commands I ran it ends up pulling 70+ libraries (velox and others) to build) Giving this build a beefier machine now to unblock while we investigate refactoring the tests to reduce memory consumption. Differential Revision: D92075908
1 parent bef4942 commit 3292a47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux-build-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222
python ./scripts/checks/run-clang-tidy.py -p $BUILD_PATH --commit $RANGE $FILES
223223
224224
ubuntu-debug:
225-
runs-on: 8-core-ubuntu-22.04
225+
runs-on: 16-core-ubuntu
226226
# prevent errors when forks ff their main branch
227227
if: ${{ github.repository == 'facebookincubator/velox' }}
228228
name: Ubuntu debug with resolve_dependency
@@ -263,7 +263,7 @@ jobs:
263263
env:
264264
VELOX_DEPENDENCY_SOURCE: BUNDLED
265265
ICU_SOURCE: SYSTEM
266-
MAKEFLAGS: NUM_THREADS=8 MAX_HIGH_MEM_JOBS=2 MAX_LINK_JOBS=2
266+
MAKEFLAGS: NUM_THREADS=16 MAX_HIGH_MEM_JOBS=4 MAX_LINK_JOBS=2
267267
run: |
268268
EXTRA_CMAKE_FLAGS=(
269269
"-DCMAKE_LINK_LIBRARIES_STRATEGY=REORDER_FREELY"

0 commit comments

Comments
 (0)