Skip to content

Install wheel in venv #218

Install wheel in venv

Install wheel in venv #218

name: "[post-commit] Slow Dispatch unit tests"

Check failure on line 1 in .github/workflows/build-and-unit-tests-wrapper.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-and-unit-tests-wrapper.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build-wheels
on:
workflow_dispatch:
jobs:
build-artifact:
uses: ./.github/workflows/build-artifact.yaml
secrets: inherit
build-wheels:
needs: build-artifact
strategy:
matrix:
# Since pre-compiled builds only run on 20.04, we can only test on 20.04 for now
# The full 22.04 flow can be tested without precompiled
os: [ubuntu-20.04]
arch: [grayskull, wormhole_b0]
sd-unit-tests:
needs: build-wheels
secrets: inherit
strategy:
fail-fast: false
matrix:
test-group: [
{ arch: grayskull, runner-label: E150 },
{ arch: wormhole_b0, runner-label: N150 },
{ arch: wormhole_b0, runner-label: N300 },
]
uses: ./.github/workflows/build-and-unit-tests.yaml
with:
arch: ${{ matrix.test-group.arch}}
runner-label: ${{ matrix.test-group.runner-label}}