diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-07-01 09:50:06 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-07-01 09:50:06 +0100 |
commit | 086f182e24e0651d1320199e90215f280350ef44 (patch) | |
tree | f5ce5342d7b97ca12eaf08d2a7f3f85dd97ea2fb | |
parent | 54bed4c5937c82e8565ed7839d711dc498848500 (diff) |
Disable WebAssembly builds for now
-rw-r--r-- | .github/workflows/dendrite.yml | 1 | ||||
-rwxr-xr-x | build.sh | 2 |
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 @@ -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 |