Skip to content

Commit

Permalink
Make build processes run at a lower priority as some builder machines…
Browse files Browse the repository at this point in the history
… are shared with devs (#10910)

#0: set niceness level
  • Loading branch information
TT-billteng authored Jul 30, 2024
1 parent 4483baa commit 800b391
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
- name: Build regular tt-metal and libs
if: ${{ !inputs.profiler-build }}
run: |
cmake -B build -G Ninja
cmake --build build --target tests
cmake --build build --target install
nice -n 19 cmake -B build -G Ninja
nice -n 19 cmake --build build --target tests
nice -n 19 cmake --build build --target install
- name: Build profiler tt-metal and libs
if: ${{ inputs.profiler-build }}
run: ./scripts/build_scripts/build_with_profiler_opt.sh
run: nice -n 19 ./scripts/build_scripts/build_with_profiler_opt.sh
- name: 'Tar files'
run: tar -cvf ttm_${{ matrix.arch }}.tar build/lib ttnn/ttnn/*.so build/programming_examples build/test build/tools runtime
- name: 'Upload Artifact'
Expand Down

0 comments on commit 800b391

Please sign in to comment.