From 23c7b36a410d2b537db7826328adbe75ffca84a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Hr=C4=8Dek?= Date: Sun, 4 Feb 2024 06:01:08 +0100 Subject: [PATCH] Disable caching job with ghc 9.2 on windows --- .github/workflows/caching.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/caching.yml b/.github/workflows/caching.yml index 96616cc4b4..b9e25eee4f 100644 --- a/.github/workflows/caching.yml +++ b/.github/workflows/caching.yml @@ -50,7 +50,6 @@ env: cabalBuild: "v2-build --keep-going" jobs: - pre_job: runs-on: ubuntu-latest outputs: @@ -90,13 +89,17 @@ jobs: - ubuntu-latest - macOS-latest - windows-latest + exclude: + # We disable this this combo in test.yml due to long path issues, so we also need to disable it here + - os: windows-latest + ghc: "9.2" steps: - uses: actions/checkout@v3 - uses: ./.github/actions/setup-build with: ghc: ${{ matrix.ghc }} - os: ${{ runner.os }} + os: ${{ runner.os }} # Download sources for feeding build sources cache # Fetching from github cache is faster than doing it from hackage