aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-07-01 09:50:06 +0100
committerNeil Alexander <neilalexander@users.noreply.github.com>2022-07-01 09:50:06 +0100
commit086f182e24e0651d1320199e90215f280350ef44 (patch)
treef5ce5342d7b97ca12eaf08d2a7f3f85dd97ea2fb
parent54bed4c5937c82e8565ed7839d711dc498848500 (diff)
Disable WebAssembly builds for now
-rw-r--r--.github/workflows/dendrite.yml1
-rwxr-xr-xbuild.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/dendrite.yml b/.github/workflows/dendrite.yml
index 5d60301c..6ebef4e1 100644
--- a/.github/workflows/dendrite.yml
+++ b/.github/workflows/dendrite.yml
@@ -17,6 +17,7 @@ jobs:
name: WASM build test
timeout-minutes: 5
runs-on: ubuntu-latest
+ if: ${{ false }} # disable for now
steps:
- uses: actions/checkout@v2
diff --git a/build.sh b/build.sh
index 700e6434..f8b5001b 100755
--- a/build.sh
+++ b/build.sh
@@ -21,4 +21,4 @@ mkdir -p bin
CGO_ENABLED=1 go build -trimpath -ldflags "$FLAGS" -v -o "bin/" ./cmd/...
-CGO_ENABLED=0 GOOS=js GOARCH=wasm go build -trimpath -ldflags "$FLAGS" -o bin/main.wasm ./cmd/dendritejs-pinecone
+# CGO_ENABLED=0 GOOS=js GOARCH=wasm go build -trimpath -ldflags "$FLAGS" -o bin/main.wasm ./cmd/dendritejs-pinecone