From ad3a3e149caeca1d5a0d7de6ef63c13714f7ba07 Mon Sep 17 00:00:00 2001 From: Titus von Koeller <9048635+Titus-von-Koeller@users.noreply.github.com> Date: Thu, 7 Mar 2024 17:43:06 +0000 Subject: [PATCH] simplify build matrices for debugging purposes --- .github/workflows/python-package.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1a35bf236..964461b66 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -30,8 +30,8 @@ jobs: build-shared-libs: strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - arch: [x86_64, aarch64] + os: [ubuntu-latest] # Keep only one OS + arch: [x86_64] # Keep only one architecture exclude: - os: windows-latest # This probably requires arm64 Windows agents arch: aarch64 @@ -82,8 +82,8 @@ jobs: build-shared-libs-cuda: strategy: matrix: - os: [ubuntu-latest, windows-latest] - arch: [x86_64, aarch64] + os: [ubuntu-latest] + arch: [x86_64] cuda_version: ['12.1.0'] exclude: - os: windows-latest # This probably requires arm64 Windows agents @@ -154,8 +154,8 @@ jobs: - build-shared-libs-cuda strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + os: [ubuntu-latest] + python-version: ["3.9"] arch: [x86_64, aarch64] exclude: - os: windows-latest # This probably requires arm64 Windows agents