From a363b4ee348804f14a0a6ecc9c232cdbad883e2b Mon Sep 17 00:00:00 2001 From: shanmite Date: Sat, 29 Oct 2022 13:28:45 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E5=85=B3=E9=97=AD`arm64`=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E6=89=93=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ``` curl: (18) transfer closed with 44597952 bytes remaining to read Error: error building at STEP "RUN mkdir -p "${PKG_CACHE_PATH}" && curl -L "$DOWNLOAD_HOST/vercel/pkg-fetch/releases/download/$RELEASE_TAG/node-v$NODEV-linux-arm64" -o "${PKG_CACHE_PATH}/fetched-v$NODEV-linux-arm64" && curl -L "$DOWNLOAD_HOST/vercel/pkg-fetch/releases/download/$RELEASE_TAG/node-v$NODEV-linuxstatic-arm64" -o "${PKG_CACHE_PATH}/fetched-v$NODEV-linuxstatic-arm64"": error while running runtime: exit status 18 Error: Process completed with exit code 125. ``` --- .github/workflows/pkg.yml | 48 +++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/pkg.yml b/.github/workflows/pkg.yml index 15e9f28..3cb20f8 100644 --- a/.github/workflows/pkg.yml +++ b/.github/workflows/pkg.yml @@ -53,27 +53,27 @@ jobs: delete_file: "dist/*.zip" tag_name: "v2" overwrite: true - arm64: - runs-on: ubuntu-latest - name: arm64 - steps: - - name: "Checkout codes" - uses: actions/checkout@v2 - - name: "Pkg this" - run: | - sudo podman run --rm --privileged multiarch/qemu-user-static --reset -p yes - npm run pkg arm - - name: "Upload to artifact" - uses: actions/upload-artifact@v2 - with: - name: arm64 - path: "dist/*.zip" - - name: "Upload to release draft" - uses: xresloader/upload-to-github-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} - with: - file: "dist/*.zip" - delete_file: "dist/*.zip" - tag_name: "v2" - overwrite: true + # arm64: + # runs-on: ubuntu-latest + # name: arm64 + # steps: + # - name: "Checkout codes" + # uses: actions/checkout@v2 + # - name: "Pkg this" + # run: | + # sudo podman run --rm --privileged multiarch/qemu-user-static --reset -p yes + # npm run pkg arm + # - name: "Upload to artifact" + # uses: actions/upload-artifact@v2 + # with: + # name: arm64 + # path: "dist/*.zip" + # - name: "Upload to release draft" + # uses: xresloader/upload-to-github-release@v1 + # env: + # GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + # with: + # file: "dist/*.zip" + # delete_file: "dist/*.zip" + # tag_name: "v2" + # overwrite: true