Files
flash-attention-prebuild-wh…/.github/workflows/test-arm.yml
T
Junya Morioka 3f85abe6ad fix: typo
2025-12-05 12:17:56 +09:00

29 lines
906 B
YAML

name: Test ARM Linux build
on:
workflow_dispatch:
jobs:
# #########################################################
# Build wheels with self-hosted runner
# #########################################################
build_wheels_self_hosted:
name: Build wheels and Upload (Linux ARM64)
uses: ./.github/workflows/_build_linux.yml
strategy:
fail-fast: false
matrix:
flash-attn-version: ["2.8.3"]
python-version: ["3.13"]
torch-version: ["2.9.1"]
# https://developer.nvidia.com/cuda-toolkit-archive
cuda-version: ["13.0.1"]
runner: ["ubuntu-22.04-arm"]
with:
flash-attn-version: ${{ matrix.flash-attn-version }}
python-version: ${{ matrix.python-version }}
torch-version: ${{ matrix.torch-version }}
cuda-version: ${{ matrix.cuda-version }}
is-upload: false
runner: ${{ matrix.runner}}