Custom test dispatch #470
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: "Custom test dispatch" | |
on: | |
workflow_dispatch: | |
inputs: | |
arch: | |
required: true | |
type: choice | |
options: | |
- grayskull | |
- wormhole_b0 | |
- blackhole | |
runner-label: | |
description: 'Optional: N150, N300, E150, BH, config-t3000, config-tg, config-tgg' | |
required: true | |
type: string | |
default: '["in-service"]' | |
build-type: | |
required: false | |
type: choice | |
options: | |
- Release | |
- Debug | |
- RelWithDebInfo | |
- CI | |
tracy: | |
required: false | |
type: boolean | |
default: false | |
description: "Build with tracy enabled" | |
command: | |
required: true | |
type: string | |
description: | |
type: string | |
default: "Custom test dispatch" | |
required: false | |
run-name: ${{ inputs.description }} | |
jobs: | |
# setup: | |
# name: Setup runner labels for deploy | |
# runs-on: ubuntu-latest | |
# outputs: | |
# deployrunner: ${{ steps.step1.outputs.deployrunner }} | |
# steps: | |
# - name: Set runs-on for deploy | |
# id: step1 | |
# run: | | |
# # local_var="\'[\"${{ inputs.hw-config }}\", \"${{ inputs.runner-label }}\"]\'" | |
# echo "deployrunner=${{ inputs.runner-label }}" >> $GITHUB_OUTPUT | |
build-artifact: | |
uses: ./.github/workflows/build-artifact.yaml | |
with: | |
arch: '[ "${{ inputs.arch }}" ]' | |
build-type: ${{ inputs.build-type }} | |
tracy: ${{ inputs.tracy }} | |
secrets: inherit | |
test-dispatch: | |
# needs: setup | |
needs: build-artifact | |
timeout-minutes: 1440 | |
env: | |
TT_METAL_ENV: ${{ vars.TT_METAL_ENV }} | |
ARCH_NAME: ${{ inputs.arch }} | |
LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib | |
runs-on: ${{ fromJSON(inputs.runner-label) }} | |
steps: | |
- uses: tenstorrent/tt-metal/.github/actions/checkout-with-submodule-lfs@main | |
- name: Ensure weka mount is active | |
timeout-minutes: 3 | |
if: ${{ inputs.arch != 'blackhole' }} | |
run: | | |
sudo systemctl restart mnt-MLPerf.mount | |
sudo /etc/rc.local | |
ls -al /mnt/MLPerf/bit_error_tests | |
- name: Set up dyanmic env vars for build | |
run: | | |
echo "TT_METAL_HOME=$(pwd)" >> $GITHUB_ENV | |
- uses: actions/download-artifact@v4 | |
with: | |
name: TTMetal_build_${{ inputs.arch }}${{ (inputs.tracy && '_profiler') || '' }} | |
- name: Extract files | |
run: tar -xvf ttm_${{ inputs.arch }}.tar | |
- uses: ./.github/actions/install-python-deps | |
- name: Run pre/post regression tests in a loop | |
run: | | |
source ${{ github.workspace }}/python_env/bin/activate | |
pip install pytest-repeat | |
cd $TT_METAL_HOME | |
export PYTHONPATH=$TT_METAL_HOME | |
${{ inputs.command }} |