Skip to content

Commit

Permalink
fix: playground deploy
Browse files Browse the repository at this point in the history
What was the issue? Cloudflare compresses .wasm files and doesn't give us the option to disable it; by changing bebopc.wasm to .bin we bypass gzip, and content-length is returned.
  • Loading branch information
andrewmd5 committed Jul 15, 2024
1 parent e74dd9e commit 62b85c4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 12 deletions.
26 changes: 17 additions & 9 deletions .github/workflows/deploy-playground.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Simple workflow for deploying static content to Cloudflare Pages
name: Deploy Playground

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
# Single deploy job since we're just deploying
deploy:
runs-on: ubuntu-latest
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
deployments: write
Expand All @@ -22,7 +28,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"
dotnet-version: "8.0.x" # SDK Version to use; x will use the latest version of the 7.0 channel
dotnet-quality: 'preview'

- name: Build Playground
Expand All @@ -32,11 +38,13 @@ jobs:
yarn build:site
working-directory: ./playground/

- name: Install Wrangler
run: npm install -g wrangler

- name: Deploy with Wrangler
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
run: |
wrangler pages publish ./playground/dist --project-name bebopc-playground --branch master
- name: Deploy Playground
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: bebopc-playground
directory: ${{github.workspace}}/playground/dist
# Optional: Enable this if you want to have GitHub Deployments triggered
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
branch: master
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -294,3 +294,4 @@ go.work
.chord
dist
*.chord
playground/src/bebopc/bebopc.bin
4 changes: 2 additions & 2 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"dist"
],
"scripts": {
"build:compiler": "../scripts/build-wasi.sh && cp -f ../bin/compiler/Release/artifacts/wasi-wasm/AppBundle/bebopc.wasm ./src/bebopc/bebopc.wasm",
"build:compiler": "../scripts/build-wasi.sh && cp -f ../bin/compiler/Release/artifacts/wasi-wasm/AppBundle/bebopc.wasm ./src/bebopc/bebopc.bin",
"dev": "vite",
"build:site": "NODE_ENV=production yarn build:compiler && vite build",
"preview:site": "vite preview",
Expand Down Expand Up @@ -62,4 +62,4 @@
"vite-plugin-static-copy": "^1.0.0",
"vitest": "^1.0.4"
}
}
}
2 changes: 1 addition & 1 deletion playground/src/bebopc/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import WASI, { createFileSystem } from "wasi-js";
import browserBindings from "wasi-js/dist/bindings/browser";
import { WASIExitError, WASIFileSystem } from "wasi-js/dist/types";

import bebopcWasmUrl from "./bebopc.wasm?url";
import bebopcWasmUrl from "./bebopc.bin?url";
import { WorkerResponse } from "./types";

const decoder = new TextDecoder();
Expand Down

0 comments on commit 62b85c4

Please sign in to comment.