Skip to content

Commit b5a01dd

Browse files
committed
とりあえずdeepseekに従う
1 parent 5a3977f commit b5a01dd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
release:
99
name: Build (${{ matrix.target }})
10-
runs-on: ubuntu-latest
10+
runs-on: ${{ matrix.os == 'windows' && 'windows-latest' || matrix.os == 'macos' && 'macos-latest' || 'ubuntu-latest' }}
1111
strategy:
1212
fail-fast: false
1313
matrix:
@@ -31,9 +31,13 @@ jobs:
3131
with:
3232
toolchain: stable
3333
targets: ${{ matrix.target }}
34+
components: rust-src rustc-dev llvm-tools-preview
35+
# msvc: ${{ matrix.os == 'windows' }}
3436
- name: Install Windows toolchain
3537
if: matrix.os == 'windows'
3638
run: |
39+
choco install -y visualstudio2022buildtools --package-parameters "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64"
40+
choco install -y windows-sdk-10.0
3741
rustup target add x86_64-pc-windows-msvc
3842
- name: Install MacOS toolchain
3943
if: matrix.os == 'macos'

0 commit comments

Comments
 (0)