-
Notifications
You must be signed in to change notification settings - Fork 84
47 lines (44 loc) · 1.41 KB
/
test_build_wheels_linux_without_cuda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Test Build Linux Wheels without CUDA
on:
pull_request:
paths:
- .github/actions/setup-binary-builds/action.yml
- .github/workflows/test_build_wheels_linux.yml
- .github/workflows/build_wheels_linux.yml
- .github/workflows/generate_binary_build_matrix.yml
- .github/workflows/test_build_wheels_linux_without_cuda.yml
- tools/scripts/generate_binary_build_matrix.py
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
generate-matrix:
uses: ./.github/workflows/generate_binary_build_matrix.yml
with:
package-type: wheel
os: linux
test-infra-repository: ${{ github.repository }}
test-infra-ref: ${{ github.ref }}
with-cuda: disable
with-rocm: disable
build-python-only: enable
test:
needs: generate-matrix
strategy:
fail-fast: false
matrix:
include:
- repository: pytorch/torchtune
package-name: torchtune
uses: ./.github/workflows/build_wheels_linux.yml
name: ${{ matrix.repository }}
with:
repository: ${{ matrix.repository }}
ref: nightly
test-infra-repository: ${{ github.repository }}
test-infra-ref: ${{ github.ref }}
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
package-name: ${{ matrix.package-name }}
trigger-event: "${{ github.event_name }}"
build-platform: 'python-build-package'