diff --git a/.github/workflows/build-artifact.yaml b/.github/workflows/build-artifact.yaml index b9b31cee042..604b2eb4858 100644 --- a/.github/workflows/build-artifact.yaml +++ b/.github/workflows/build-artifact.yaml @@ -24,7 +24,7 @@ jobs: - uses: ./.github/actions/install-python-deps - name: Build tt-metal and libs run: | - cmake -B build -G Ninja + cmake -B build cmake --build build --target tests -- -j`nproc` cmake --build build --target metal-install - name: 'Tar files' diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c170a40fbdb..e775c690fc6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -38,7 +38,7 @@ jobs: echo "TT_METAL_HOME=$(pwd)" >> $GITHUB_ENV - name: Build tt-metal libraries run: | - cmake -B build -G Ninja + cmake -B build cmake --build build -- -j`nproc` - name: Remove unnecessary artifacts run: | @@ -80,7 +80,7 @@ jobs: - name: Build tt-metal tests run: | rm -f build/CMakeCache.txt - cmake -B build -G Ninja + cmake -B build cmake --build build --target tests -- -j`nproc` make-build-lib: strategy: