From 56488558a9eb89cec152ebb1d02e882636cee13f Mon Sep 17 00:00:00 2001 From: Stephen Aylward Date: Wed, 26 Jun 2024 23:33:42 -0400 Subject: [PATCH] BUG: Remove old wasm.yml build file. --- .github/workflows/wasm.yml | 44 -------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/wasm.yml diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml deleted file mode 100644 index fc10310fc..000000000 --- a/.github/workflows/wasm.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: WebAssembly - -on: [push,pull_request] - -jobs: - build-wasm: - name: "Build WebAssembly" - runs-on: ubuntu-22.04 - - steps: - - name: 'Free up disk space' - run: | - # Workaround for https://github.com/actions/virtual-environments/issues/709 - df -h - sudo apt-get update - sudo apt-get remove -y '^dotnet-.*' - sudo apt-get remove -y '^llvm-.*' - sudo apt-get remove -y 'php.*' - sudo apt-get autoremove -y - sudo apt-get clean - sudo rm -rf "/usr/local/share/boost" - sudo rm -rf /usr/share/dotnet/ - sudo rm -rf "$AGENT_TOOLSDIRECTORY" - df -h - - - uses: actions/checkout@v3 - - - uses: actions/setup-node@v3 - with: - node-version: '18' - - - name: Install - run: | - npm install - - - name: Build - run: | - npm run build - - - name: Build TypeScript / JavaScript package - run: | - cd wasm/typescript - npm install - npm run build