Skip to content

Commit

Permalink
Reduce number of link jobs in ubuntu debug build (#10671)
Browse files Browse the repository at this point in the history
Summary:
For some reason the linux debug build has started to fail because it get's oom killed during linking: https://github.com/facebookincubator/velox/actions/runs/10259255187/job/28383420958#step:7:6891

I am not sure if the addition of parquet in #10648 is to blame, in that PR the job did not fail.

Pull Request resolved: #10671

Reviewed By: kevinwilfong

Differential Revision: D60841583

Pulled By: kagamiori

fbshipit-source-id: f3d4a679baf2739f8ff316b535377036527be07d
  • Loading branch information
assignUser authored and facebook-github-bot committed Aug 6, 2024
1 parent 8e94b0a commit abbeef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
- name: Make Debug Build
env:
VELOX_DEPENDENCY_SOURCE: BUNDLED
MAKEFLAGS: "NUM_THREADS=8 MAX_HIGH_MEM_JOBS=4 MAX_LINK_JOBS=4"
MAKEFLAGS: "NUM_THREADS=8 MAX_HIGH_MEM_JOBS=4 MAX_LINK_JOBS=3"
EXTRA_CMAKE_FLAGS: "-DVELOX_ENABLE_ARROW=ON -DVELOX_ENABLE_PARQUET=ON"
run: |
make debug
Expand Down

0 comments on commit abbeef5

Please sign in to comment.