mirror of
https://github.com/BillyOutlast/flash-attention-prebuild-wheels-rocm.git
synced 2026-07-01 01:27:54 -04:00
991becbb7f
- Add .github/workflows/test-windows-self-hosted.yml for Windows self-hosted runner testing. - Update README.md with comprehensive self-hosted runner setup guides for Linux, ARM64, and Windows. - Update self-hosted-runner/compose.yml to enable both x86_64 and ARM64 runner services. - Add a note about manylinux2_28 and update the sponsor list in README.md.
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
services:
|
|
runner:
|
|
platform: linux/amd64
|
|
privileged: true
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
REPOSITORY_URL: https://github.com/mjun0812/flash-attention-prebuild-wheels
|
|
RUNNER_NAME: self-hosted-runner
|
|
RUNNER_GROUP: default
|
|
TARGET_ARCH: x64
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
GH_RUNNER_VERSION: 2.329.0
|
|
TARGET_ARCH: x64
|
|
PLATFORM: linux/amd64
|
|
volumes:
|
|
- fa-self:/var/lib/docker
|
|
|
|
runner-arm:
|
|
platform: linux/arm64
|
|
privileged: true
|
|
restart: always
|
|
env_file:
|
|
- .env.arm
|
|
environment:
|
|
REPOSITORY_URL: https://github.com/mjun0812/flash-attention-prebuild-wheels
|
|
RUNNER_NAME: self-hosted-runner-arm
|
|
RUNNER_GROUP: default
|
|
TARGET_ARCH: arm64
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
GH_RUNNER_VERSION: 2.329.0
|
|
TARGET_ARCH: arm64
|
|
PLATFORM: linux/arm64
|
|
volumes:
|
|
- fa-self-arm:/var/lib/docker
|
|
|
|
volumes:
|
|
fa-self:
|
|
fa-self-arm:
|