Skip to content

No ARCH_NAME in CI building umd_device #26

No ARCH_NAME in CI building umd_device

No ARCH_NAME in CI building umd_device #26

Workflow file for this run

# Optional PR checks
name: On PR - Optional
on:
workflow_dispatch:
pull_request:
branches: [ "main" ]
jobs:
build-tests:
secrets: inherit
strategy:
fail-fast: false
matrix:
test-group: [
# Enable once we have functional cards with specified architecture.
# { arch: grayskull },
{ arch: wormhole_b0 },
# { arch: blackhole },
]
uses: ./.github/workflows/build-tests.yml

Check failure on line 21 in .github/workflows/on-pr-opt.yml

View workflow run for this annotation

GitHub Actions / On PR - Optional

Invalid workflow file

The workflow is not valid. In .github/workflows/on-pr-opt.yml (Line: 21, Col: 11): Error from called workflow tenstorrent/tt-umd/.github/workflows/build-tests.yml@bd0fec6f574ad980bacc28819f695748f798c075 (Line: 49, Col: 11): Unrecognized named-value: 'env'. Located at position 1 within expression: env.BUILD_TARGET
with:
arch: ${{ matrix.test-group.arch }}
timeout: 10
test-all:
secrets: inherit
needs: build-tests
strategy:
fail-fast: false
matrix:
test-group: [
# Enable once we have functional cards.
# { arch: grayskull, card: e75 },
# { arch: grayskull, card: e150 },
# { arch: grayskull, card: e300 },
{ arch: wormhole_b0, card: n150, timeout: 5 },
{ arch: wormhole_b0, card: n300, timeout: 15 },
# { arch: blackhole },
]
uses: ./.github/workflows/run-tests.yml
with:
arch: ${{ matrix.test-group.arch }}
card: ${{ matrix.test-group.card }}
timeout: ${{ matrix.test-group.timeout }}