(TG) TG unit tests #16
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: "[TG] TG unit tests" | |
on: | |
push: | |
branches: | |
- galaxy/main | |
schedule: | |
- cron: '0 0 * * *' # Runs every day at 12am UTC | |
workflow_dispatch: | |
jobs: | |
build-artifact: | |
uses: ./.github/workflows/build-artifact.yaml | |
secrets: inherit | |
TG-tests: | |
strategy: | |
# Do not fail-fast because we need to ensure all tests go to completion | |
# so we try not to get hanging machines | |
fail-fast: false | |
matrix: | |
runner-info: [ | |
# TG | |
{arch: wormhole_b0, runs-on: ["config-tg", "in-service"]}, | |
] | |
test-group: [ | |
{name: "TG Unit Tests", cmd: './tests/scripts/run_tests.sh --tt-arch wormhole_b0 --pipeline-type post_commit_tg --dispatch-mode ""'}, | |
] | |
name: ${{ matrix.test-group.name }} ${{ matrix.runner-info.arch }} ${{ matrix.runner-info.name }} | |
env: | |
TT_METAL_ENV: ${{ vars.TT_METAL_ENV }} | |
ARCH_NAME: ${{ matrix.runner-info.arch }} | |
CONFIG: ci | |
LOGURU_LEVEL: INFO | |
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | |
runs-on: ${{ matrix.runner-info.runs-on }} | |
steps: | |
- uses: tenstorrent-metal/metal-workflows/.github/actions/[email protected] | |
- name: Set up dynamic env vars for build | |
run: | | |
echo "TT_METAL_HOME=$(pwd)" >> $GITHUB_ENV | |
- uses: actions/download-artifact@v4 | |
with: | |
name: TTMetal_build_${{ matrix.runner-info.arch }} | |
- name: Extract files | |
run: tar -xvf ttm_${{ matrix.runner-info.arch }}.tar | |
- uses: ./.github/actions/install-python-deps | |
- name: ${{ matrix.test-group.name }} tests | |
timeout-minutes: 45 | |
run: | | |
source ${{ github.workspace }}/python_env/bin/activate | |
cd $TT_METAL_HOME | |
export PYTHONPATH=$TT_METAL_HOME | |
${{ matrix.test-group.cmd }} |