Install wheel in venv #218
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: "[post-commit] Slow Dispatch unit tests" | ||
Check failure on line 1 in .github/workflows/build-and-unit-tests-wrapper.yaml GitHub Actions / .github/workflows/build-and-unit-tests-wrapper.yamlInvalid workflow file
|
||
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}} |