From 0953d4223b0e007c842643221dabbbc7223d23bc Mon Sep 17 00:00:00 2001 From: Philip Mueller Date: Mon, 17 Jun 2024 09:05:05 +0200 Subject: [PATCH] Removed the MacOSX and Windows runner from the CI. It is known that DaCe does not work out of the box on [MacOSX](https://spcldace.readthedocs.io/en/latest/setup/installation.html#common-issues-with-the-dace-python-module) and [Windows](https://github.com/spcl/dace/pull/1598). Furthermore, since JaCe is a pure Python project we relay on the portability of DaCe and Jax and in the end Python. Thus every crossplatform problem should be handled by DaCe and Jax and not JaCe. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b065ed7..fdefb04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: fail-fast: false matrix: python-version: ['3.10', '3.12'] - runs-on: [ubuntu-latest, macos-latest, windows-latest] + runs-on: [ubuntu-latest] steps: - uses: actions/checkout@v4