Skip to content

Commit 0209008

Browse files
committed
disable cuda for 0.1.12
1 parent 9bde534 commit 0209008

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
tags:
7-
- 'v*'
7+
- "v*"
88

99
jobs:
1010
release:
@@ -14,22 +14,22 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
include:
17-
- platform: 'macos-latest'
18-
args: '--target aarch64-apple-darwin'
19-
python-version: '3.12'
20-
backend: 'mlx'
21-
- platform: 'macos-15-intel'
22-
args: '--target x86_64-apple-darwin'
23-
python-version: '3.12'
24-
backend: 'pytorch'
17+
- platform: "macos-latest"
18+
args: "--target aarch64-apple-darwin"
19+
python-version: "3.12"
20+
backend: "mlx"
21+
- platform: "macos-15-intel"
22+
args: "--target x86_64-apple-darwin"
23+
python-version: "3.12"
24+
backend: "pytorch"
2525
# - platform: 'ubuntu-22.04'
2626
# args: ''
2727
# python-version: '3.12'
2828
# backend: 'pytorch'
29-
- platform: 'windows-latest'
30-
args: ''
31-
python-version: '3.12'
32-
backend: 'pytorch'
29+
- platform: "windows-latest"
30+
args: ""
31+
python-version: "3.12"
32+
backend: "pytorch"
3333

3434
runs-on: ${{ matrix.platform }}
3535

@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/setup-python@v5
5454
with:
5555
python-version: ${{ matrix.python-version }}
56-
cache: 'pip'
56+
cache: "pip"
5757

5858
- name: Install Python dependencies
5959
run: |
@@ -66,11 +66,11 @@ jobs:
6666
run: |
6767
pip install -r backend/requirements-mlx.txt
6868
69-
- name: Install PyTorch with CUDA (Windows only)
70-
if: matrix.platform == 'windows-latest'
71-
run: |
72-
pip install torch --index-url https://download.pytorch.org/whl/cu121 --force-reinstall --no-deps
73-
pip install torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
69+
# - name: Install PyTorch with CUDA (Windows only)
70+
# if: matrix.platform == 'windows-latest'
71+
# run: |
72+
# pip install torch --index-url https://download.pytorch.org/whl/cu121 --force-reinstall --no-deps
73+
# pip install torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
7474

7575
- name: Build Python server (Linux/macOS)
7676
if: matrix.platform != 'windows-latest'
@@ -106,7 +106,7 @@ jobs:
106106
- name: Rust cache
107107
uses: swatinem/rust-cache@v2
108108
with:
109-
workspaces: './tauri/src-tauri -> target'
109+
workspaces: "./tauri/src-tauri -> target"
110110

111111
- name: Install dependencies
112112
run: bun install
@@ -142,7 +142,7 @@ jobs:
142142
with:
143143
projectPath: tauri
144144
tagName: v__VERSION__
145-
releaseName: 'voicebox v__VERSION__'
145+
releaseName: "voicebox v__VERSION__"
146146
releaseBody: |
147147
## What's Changed
148148
See the assets below to download and install this version.

0 commit comments

Comments
 (0)