Release candidate: remove wasm build from GH actions.

We'll build this on a bigger machine in circleci to avoid
running out of space.
This commit is contained in:
John MacFarlane
2026-06-04 10:59:34 +02:00
parent 622feb8e2b
commit 9e73edc387
-48
View File
@@ -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