Skip to content

Commit 5bcc708

Browse files
committed
test: reduce manylinux wheel smoke workflows
1 parent 177fe19 commit 5bcc708

4 files changed

Lines changed: 10 additions & 14 deletions

File tree

.github/workflows/build-and-release.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-22.04, windows-2022, macos-14, macos-15]
14+
os: [ubuntu-22.04]
1515

1616
steps:
1717
- uses: actions/checkout@v6
@@ -76,6 +76,7 @@ jobs:
7676

7777
build_wheels_arm64:
7878
name: Build arm64 wheels
79+
if: ${{ false }}
7980
runs-on: ubuntu-24.04-arm
8081
steps:
8182
- uses: actions/checkout@v6
@@ -107,6 +108,7 @@ jobs:
107108

108109
build_wheels_riscv64:
109110
name: Build riscv64 wheel
111+
if: ${{ false }}
110112
runs-on: ubuntu-latest
111113
steps:
112114
- uses: actions/checkout@v6
@@ -141,6 +143,7 @@ jobs:
141143

142144
build_sdist:
143145
name: Build source distribution
146+
if: ${{ false }}
144147
runs-on: ubuntu-latest
145148

146149
steps:
@@ -184,7 +187,7 @@ jobs:
184187
release:
185188
name: Release
186189
needs: [build_wheels, build_wheels_arm64, build_wheels_riscv64, build_sdist]
187-
if: startsWith(github.ref, 'refs/tags/')
190+
if: ${{ false }}
188191
runs-on: ubuntu-latest
189192

190193
steps:

.github/workflows/build-wheels-cuda.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,12 @@ jobs:
2626
id: set-matrix
2727
run: |
2828
$matrix = @{
29-
'os' = @('ubuntu-22.04', 'windows-2022')
29+
'os' = @('ubuntu-22.04')
3030
# wheel.py-api = "py3" makes the CUDA wheel interpreter-agnostic,
3131
# so one builder per toolkit version is sufficient.
3232
'pyver' = @("3.9")
33-
'cuda' = @("11.8.0", "12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1", "13.0.2", "13.2.1")
33+
'cuda' = @("13.2.1")
3434
'releasetag' = @("basic")
35-
'exclude' = @(
36-
@{ 'os' = 'windows-2022'; 'cuda' = '12.1.1' },
37-
@{ 'os' = 'windows-2022'; 'cuda' = '12.2.2' },
38-
@{ 'os' = 'windows-2022'; 'cuda' = '12.3.2' }
39-
)
4035
}
4136
4237
$matrixOut = ConvertTo-Json $matrix -Compress

.github/workflows/build-wheels-rocm.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
amdgpu_targets:
1111
description: AMDGPU targets to compile into the Linux ROCm wheel
1212
required: false
13-
default: gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1150;gfx1151;gfx1200;gfx1201
13+
default: gfx1100
1414
windows_amdgpu_targets:
1515
description: AMDGPU targets to compile into the Windows HIP Radeon wheel
1616
required: false
@@ -32,7 +32,7 @@ jobs:
3232
- os: ubuntu-22.04
3333
pyver: "3.9"
3434
rocm: "7.2.4"
35-
amdgpu_targets: gfx908;gfx90a;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1150;gfx1151;gfx1200;gfx1201
35+
amdgpu_targets: gfx1100
3636

3737
steps:
3838
- name: Install system dependencies
@@ -113,6 +113,7 @@ jobs:
113113

114114
build_wheels_windows_hip:
115115
name: Build Wheel windows-2022 ${{ matrix.pyver }} HIP ${{ matrix.name }}
116+
if: ${{ false }}
116117
runs-on: windows-2022
117118
env:
118119
HIPSDK_INSTALLER_VERSION: "26.Q1"

.github/workflows/build-wheels-vulkan.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
- os: ubuntu-22.04
2727
pyver: "3.9"
2828
artifact: wheels-vulkan-ubuntu-22.04
29-
- os: windows-2022
30-
pyver: "3.9"
31-
artifact: wheels-vulkan-windows-2022
3229

3330
steps:
3431
- name: Set up MSVC

0 commit comments

Comments
 (0)