forked from pytorch/torchtitan
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.1 KB
/
Copy pathbuild_whl_and_publish.yaml
File metadata and controls
41 lines (38 loc) · 1.1 KB
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
name: Build nightly wheels and publish to PyTorch Index
on:
push:
branches:
- nightly
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
generate-matrix:
if: github.repository_owner == 'pytorch'
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
with:
package-type: wheel
os: linux
test-infra-repository: pytorch/test-infra
test-infra-ref: main
with-cpu: disable
with-cuda: enable
with-rocm: enable
python-versions: '["3.10", "3.11", "3.12"]'
build:
needs: generate-matrix
name: ${{ matrix.repository }}
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
strategy:
fail-fast: false
with:
repository: pytorch/torchtitan
ref: ""
test-infra-repository: pytorch/test-infra
test-infra-ref: main
package-name: torchtitan
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
pre-script: .github/scripts/update_version.sh
trigger-event: ${{ github.event_name }}
build-platform: 'python-build-package'