From c88a3488eb0d1c97a1305bcab94cf71815a69ba4 Mon Sep 17 00:00:00 2001 From: Keith Battocchi Date: Fri, 3 May 2024 00:26:52 -0400 Subject: [PATCH] Use macos-12 instead of macos-latest to avoid ARM until dependencies are available. Signed-off-by: Keith Battocchi Signed-off-by: Gabriel Daiha --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ae55a779..4e02aa507 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -201,12 +201,12 @@ jobs: if: ${{ needs.eval.outputs.testCode == 'True' }} strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-12] python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] kind: [serial, other, dml, main, treatment, ray] exclude: # Serial tests fail randomly on mac sometimes, so we don't run them there - - os: macos-latest + - os: macos-12 kind: serial # Ray tests run out of memory on Windows - os: windows-latest