Skip to content

Commit

Permalink
update runner
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiyuan8 committed Aug 28, 2024
1 parent d29dc9f commit 0a6386f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build-wheels-cuda-win.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ jobs:
steps:
- name: Define Job Output
id: set-matrix
# here 'nexa-sdk-windows-8-core' is a large runner
run: |
$matrix = @{
'os' = @('nexa-sdk-windows-8-core')
'pyver' = @("3.10", "3.11", "3.12")
'pyver' = @("3.7", "3.8", "3.9", "3.10", "3.11", "3.12")
'cuda' = @("12.4.1")
'releasetag' = @("basic")
}
Expand All @@ -31,9 +29,9 @@ jobs:
Write-Output ('matrix=' + $matrixOut) >> $env:GITHUB_OUTPUT
build_wheels:
name: Build Wheel ${{ matrix.os }} ${{ matrix.pyver }} ${{ matrix.cuda }} ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
name: Build Wheel ${{ matrix.pyver }} ${{ matrix.cuda }} ${{ matrix.releasetag == 'wheels' && 'AVX2' || matrix.releasetag }}
needs: define_matrix
runs-on: ${{ matrix.os }}
runs-on: nexa-sdk-windows-8-core
strategy:
matrix: ${{ fromJSON(needs.define_matrix.outputs.matrix) }}
defaults:
Expand Down

0 comments on commit 0a6386f

Please sign in to comment.