Skip to content

Commit

Permalink
#0: no need to install python dependencies during artifact build
Browse files Browse the repository at this point in the history
  • Loading branch information
TT-billteng committed May 25, 2024
1 parent afc3ac4 commit 36d305b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ jobs:
- name: Update submodules
run: |
git submodule update --init --recursive
- uses: ./.github/actions/install-python-deps
- name: Build tt-metal and libs
run: |
cmake -B build -G Ninja -DCMAKE_CXX_COMPILER=clang++-17
cmake --build build --target tests -- -j`nproc`
cmake --build build --target install -- -j`nproc`
cmake --build build --target tests
cmake --build build --target install
- name: 'Tar files'
run: tar -cvf ttm_${{ matrix.arch }}.tar build/hw build/lib tt_eager/tt_lib/*.so ttnn/ttnn/*.so build/programming_examples build/test build/tools
- name: 'Upload Artifact'
Expand Down

0 comments on commit 36d305b

Please sign in to comment.