From ab82c942cda64768c6bf98641183ec423438906f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Mon, 22 Apr 2024 14:55:19 +0200 Subject: [PATCH] Don't test realtime tests on macos --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5e3eef8..91844c69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -137,7 +137,11 @@ jobs: - name: Build all packages run: nix build - name: Run tests + if: matrix.os != 'macos-latest' run: nix develop -c cabal test all + - name: Run tests (except realtime) + if: matrix.os == 'macos-latest' + run: nix develop -c cabal test all --test-options='-p "! /Millisecond/"' # nix flake check breaks on IFD in multi-platform flake https://github.com/NixOS/nix/issues/4265 # - run: nix flake check