From a27740b00b2f2e9af1a9dcc5b393a80d41bb7d36 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 6 Feb 2026 19:44:27 +0100 Subject: [PATCH] Remove nix-wasm from CI. The build kept running out of resources. Not sure how to fix. --- .github/workflows/ci.yml | 48 +++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ce4a1b06..b6fa5eddf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,29 +136,6 @@ jobs: run: | stack test --fast - nix-wasm: - - runs-on: ubuntu-latest - strategy: - fail-fast: true - steps: - - uses: actions/checkout@v6 - # Remove unneeded cruft in runner so we have room for Nix: - - uses: wimpysworld/nothing-but-nix@v9 - with: - hatchet-protocol: 'rampage' - - uses: DeterminateSystems/nix-installer-action@main - - uses: DeterminateSystems/magic-nix-cache-action@main - - name: Cache cabal work - id: cabal-local - uses: actions/cache@v5 - with: - path: | - dist-newstyle - key: ${{ runner.os }}-nix-cabal-local-${{ secrets.CACHE_VERSION }} - - run: | - nix develop --command bash -c "make pandoc.wasm" - windows: runs-on: windows-2022 @@ -194,6 +171,31 @@ jobs: cabal update cabal test --ghc-option=-Werror -fhttp --enable-tests --disable-optimization --ghc-options=-Werror all +# The nix build ran out of resources. Not sure how to fix. +# +# nix-wasm: +# +# runs-on: ubuntu-latest +# strategy: +# fail-fast: true +# steps: +# - uses: actions/checkout@v6 +# # Remove unneeded cruft in runner so we have room for Nix: +# - uses: wimpysworld/nothing-but-nix@v9 +# with: +# hatchet-protocol: 'rampage' +# - uses: DeterminateSystems/nix-installer-action@main +# - uses: DeterminateSystems/magic-nix-cache-action@main +# - name: Cache cabal work +# id: cabal-local +# uses: actions/cache@v5 +# with: +# path: | +# dist-newstyle +# key: ${{ runner.os }}-nix-cabal-local-${{ secrets.CACHE_VERSION }} +# - run: | +# nix develop --command bash -c "make pandoc.wasm" + # We no longer run the macos tests, to make CI faster. # macos: