From 9e73edc387bf778cc097b061c8d6c3d5933eb07b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 4 Jun 2026 10:59:34 +0200 Subject: [PATCH] Release candidate: remove wasm build from GH actions. We'll build this on a bigger machine in circleci to avoid running out of space. --- .github/workflows/release-candidate.yml | 48 ------------------------- 1 file changed, 48 deletions(-) diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index 0fc452523..e2dd4b90a 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -124,51 +124,3 @@ jobs: name: macos-x86_64 path: macos-x86_64 - wasm: - - runs-on: ubuntu-latest - strategy: - fail-fast: true - steps: - - uses: actions/checkout@v6 - - uses: wimpysworld/nothing-but-nix@v10 - with: - hatchet-protocol: 'rampage' - - name: Remove useless stuff - run: | - rm -rf /opt/hostedtoolcache - - uses: cachix/install-nix-action@v31 - with: - nix_path: nixpkgs=channel:nixos-unstable - - name: Cache cabal work - id: cabal-local - uses: actions/cache@v5 - with: - path: | - dist-newstyle - key: ${{ runner.os }}-nix-cabal-local-${{ secrets.CACHE_VERSION }} - - name: Build pandoc.wasm - run: | - nix develop --command bash -c "make pandoc.wasm" - - name: Upload artifact - uses: actions/upload-artifact@v7 - with: - name: pandoc.wasm - path: pandoc.wasm - - -# linux: - -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v6 -# - name: Create linux package -# run: | -# make debpkg -# mkdir linux-release-candidate -# cp linux/artifacts/*.deb linux-release-candidate/ -# cp linux/artifacts/*.tar.gz linux-release-candidate/ -# - uses: actions/upload-artifact@v7 -# with: -# name: linux-release-candidate -# path: linux-release-candidate