Nightly fast dispatch tests #1094
Workflow file for this run
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: Scheduled fast dispatch frequent build and run | |
on: | |
workflow_dispatch: | |
workflow_call: | |
schedule: | |
- cron: "0 1,6 * * *" | |
jobs: | |
build-and-test-frequent-fast-dispatch: | |
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: | |
arch: [grayskull, wormhole_b0] | |
env: | |
TT_METAL_ENV: ${{ vars.TT_METAL_ENV }} | |
ARCH_NAME: ${{ matrix.arch }} | |
environment: dev | |
runs-on: model-runner-${{ matrix.arch }} | |
steps: | |
- uses: tenstorrent-metal/metal-workflows/.github/actions/checkout-with-submodule-lfs@main | |
with: | |
token: ${{ secrets.CHECKOUT_TOKEN }} | |
- name: Set up dyanmic env vars for build | |
run: | | |
echo "TT_METAL_HOME=$(pwd)" >> $GITHUB_ENV | |
- name: Build tt-metal and libs | |
run: make build | |
- name: Run frequent reg tests scripts | |
timeout-minutes: 165 | |
run: ./tests/scripts/run_tests.sh --tt-arch ${{ matrix.arch }} --pipeline-type frequent --dispatch-mode fast |