diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1698744..90ff247 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,32 +59,3 @@ jobs: git checkout master -- tests/smoke.js npm install ws node tests/smoke.js - build-arm: - runs-on: [ubuntu-24.04, arm64] - name: Build on ARM64 - steps: - - name: Clone - run: git clone --recursive https://github.com/uNetworking/uWebSockets.js.git - - name: Install dependencies - run: | - sudo apt-get update -q -y - sudo apt-get install -q -y build-essential cmake libz-dev golang curl libunwind-dev clang - - name: Compile binaries - run: | - cd uWebSockets.js - make - - name: Update binaries - run: | - cd uWebSockets.js - git fetch origin binaries:binaries - git checkout binaries - cp dist/*.node . - cp dist/*.js . - git status - git rev-parse master > source_commit - git checkout master docs/index.d.ts && mv docs/index.d.ts . - git config --global user.email "alexhultman@gmail.com" - git config --global user.name "Alex Hultman" - git add *.node *.js - git commit -a -m "[GitHub Actions] Updated linux-arm64 binaries" || true - git push "https://unetworkingab:${{ secrets.SECRET }}@github.com/uNetworking/uWebSockets.js" binaries