Skip to content

Add supported models to CI #672

Add supported models to CI

Add supported models to CI #672

Workflow file for this run

name: On PR
on:
workflow_dispatch:
inputs:
mlir_override:
description: 'Git SHA of commit in tenstorrent/tt-mlir'
required: false
type: string
pull_request:
branches: [ "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
uses: ./.github/workflows/pre-commit.yml
secrets: inherit
spdx:
uses: ./.github/workflows/spdx.yml
secrets: inherit
build:
needs: [pre-commit, spdx]
uses: ./.github/workflows/run-build.yml
secrets: inherit
with:
mlir_override: ${{ github.event.inputs.mlir_override }}
test:
needs: build
uses: ./.github/workflows/run-tests.yml
secrets: inherit