Separate workflows for build and running tests. #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | ||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
jobs: | ||
# build-tt-torch: | ||
# timeout-minutes: 120 | ||
# strategy: | ||
# fail-fast: false | ||
# name: Build and test tt-torch | ||
# runs-on: ubuntu-latest | ||
# container: | ||
# image: ghcr.io/tenstorrent/tt-mlir/tt-mlir-ci-ubuntu-22-04:latest #TODO update this to the correct image | ||
# options: --user root | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# with: | ||
# submodules: recursive | ||
# lfs: true | ||
# - name: Set reusable strings | ||
# id: strings | ||
# shell: bash | ||
# run: | | ||
# echo "work-dir=$(pwd)" >> "$GITHUB_OUTPUT" | ||
# echo "build-output-dir=$(pwd)/build" >> "$GITHUB_OUTPUT" | ||
# echo "metal-lib-dir=$(pwd)/third_party/tt-mlir/src/tt-mlir/third_party/tt-metal/src/tt-metal-build/lib" >> "$GITHUB_OUTPUT" | ||
# echo "install-output-dir=$(pwd)/install" >> "$GITHUB_OUTPUT" | ||
# - name: Git safe dir | ||
# run: git config --global --add safe.directory ${{ steps.strings.outputs.work-dir }} | ||
# # Build project | ||
# - name: Configure CMake | ||
# shell: bash | ||
# run: | | ||
# source env/activate | ||
# cmake -G Ninja \ | ||
# -B ${{ steps.strings.outputs.build-output-dir }} \ | ||
# -S ${{ steps.strings.outputs.work-dir }} | ||
# - name: Build | ||
# shell: bash | ||
# run: | | ||
# source env/activate | ||
# cmake --build ${{ steps.strings.outputs.build-output-dir }} | ||
# cmake --install ${{ steps.strings.outputs.build-output-dir }} | ||
# # This is needed to preserve file permissions | ||
# # https://github.com/actions/upload-artifact?tab=readme-ov-file#permission-loss | ||
# - name: 'Tar install directory and metal lib directory' | ||
# shell: bash | ||
# working-directory: ${{ steps.strings.outputs.install-output-dir }} | ||
# run: | | ||
# tar cvf artifact.tar . | ||
# - name: Upload install folder to archive | ||
# uses: actions/upload-artifact@v4 | ||
# with: | ||
# name: install-artifacts | ||
# path: ${{ steps.strings.outputs.build-output-dir }}/artifact.tar | ||
# - name: Get the latest tag | ||
# shell: bash | ||
# run: | | ||
# latest_tag=$(git describe --tags --abbrev=0) | ||
# latest_tag=${latest_tag#v} | ||
# echo "latest_tag=$latest_tag" >> $GITHUB_ENV | ||
# commit_count=$(git rev-list ${{ env.latest_tag }}..HEAD --count) | ||
# echo "commit_count=$commit_count" >> $GITHUB_ENV | ||
# version="${{ env.latest_tag }}.${{ env.commit_count }}" | ||
# echo "version=$version" >> $GITHUB_ENV | ||
# echo $version | ||
# # Run tests on TT hardware | ||
build-and-run-tests: | ||
timeout-minutes: 120 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build: [ | ||
{runs-on: n150, name: "run"}, | ||
] | ||
runs-on: | ||
- in-service | ||
- ${{ matrix.build.runs-on }} | ||
container: | ||
image: ghcr.io/tenstorrent/tt-torch/tt-torch-ci-ubuntu-22-04:latest | ||
options: --user root --device /dev/tenstorrent/0 | ||
volumes: | ||
- /dev/hugepages:/dev/hugepages | ||
- /dev/hugepages-1G:/dev/hugepages-1G | ||
- /etc/udev/rules.d:/etc/udev/rules.d | ||
- /lib/modules:/lib/modules | ||
- /opt/tt_metal_infra/provisioning/provisioning_env:/opt/tt_metal_infra/provisioning/provisioning_env | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
lfs: true | ||
- name: Set reusable strings | ||
id: strings | ||
shell: bash | ||
run: | | ||
echo "work-dir=$(pwd)" >> "$GITHUB_OUTPUT" | ||
echo "build-output-dir=$(pwd)/build" >> "$GITHUB_OUTPUT" | ||
echo "install-output-dir=$(pwd)/install" >> "$GITHUB_OUTPUT" | ||
- name: Git safe dir | ||
run: git config --global --add safe.directory ${{ steps.strings.outputs.work-dir }} | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
create-symlink: true | ||
key: ${{ matrix.build.runs-on }} | ||
# Build project | ||
- name: Configure CMake | ||
shell: bash | ||
run: | | ||
source env/activate | ||
cmake -G Ninja \ | ||
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ | ||
-DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.install-output-dir }} \ | ||
-B ${{ steps.strings.outputs.build-output-dir }} \ | ||
-S ${{ steps.strings.outputs.work-dir }} | ||
- name: Build | ||
shell: bash | ||
run: | | ||
source env/activate | ||
cmake --build ${{ steps.strings.outputs.build-output-dir }} | ||
cmake --install ${{ steps.strings.outputs.build-output-dir }} | ||
- name: Copy tt-metal binaries | ||
shell: bash | ||
working-directory: ${{ steps.strings.outputs.install-output-dir }} | ||
run: cp ${{ steps.strings.outputs.work-dir }}/third_party/tt-mlir/src/tt-mlir/third_party/tt-metal/src/tt-metal-build/lib/*.so lib/ | ||
-name: Copy libfmt | ||
shell: bash | ||
working-directory: ${{ steps.strings.outputs.install-output-dir }} | ||
run: cp ${{ steps.strings.outputs.work-dir }}/third_party/tt-mlir/src/tt-mlir/third_party/tt-metal/src/tt-metal-build/_deps/fmt-build/*.so lib/ | ||
- name: 'Tar install directory' | ||
shell: bash | ||
working-directory: ${{ steps.strings.outputs.install-output-dir }} | ||
run: tar cvf artifact.tar . | ||
- name: Upload install folder to archive | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: install-artifacts | ||
path: ${{ steps.strings.outputs.install-output-dir }}/artifact.tar |