Skip to content

No ARCH_NAME in CI building umd_device (#88) #5

No ARCH_NAME in CI building umd_device (#88)

No ARCH_NAME in CI building umd_device (#88) #5

Workflow file for this run

name: On Push
on:
workflow_dispatch:
push:
branches: [ "main" ]
jobs:
build-all:
secrets: inherit
strategy:
fail-fast: false
matrix:
test-group: [
{ arch: grayskull },
{ arch: wormhole_b0 },
{ arch: blackhole },
]
uses: ./.github/workflows/build-target.yml

Check failure on line 19 in .github/workflows/on-push.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/on-push.yml

Invalid workflow file

error parsing called workflow ".github/workflows/on-push.yml" -> "./.github/workflows/build-target.yml" : failed to fetch workflow: workflow was not found.
with:
arch: ${{ matrix.test-group.arch }}
timeout: 10
build-target: umd_device
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-target.yml
with:
arch: ${{ matrix.test-group.arch }}
timeout: 10
build-target: umd_tests
upload-artifacts: true
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 }}