From 2366f653e88b1899007f354ead4e5c4bdb605e76 Mon Sep 17 00:00:00 2001 From: Li Jie Date: Wed, 23 Sep 2026 13:13:20 +0800 Subject: [PATCH] Fix LLGo Binaryen ARM64 release packaging --- .github/workflows/create_release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 5973503185b..2110a06fc22 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -66,10 +66,11 @@ jobs: - name: build run: cmake --build out -v --config Release --target install + if: matrix.os != 'windows-11-arm' - name: build-arm64 run: cmake --build out-arm64 -v --config Release --target install - if: startsWith(matrix.os, 'macos') + if: startsWith(matrix.os, 'macos') || matrix.os == 'windows-11-arm' - name: strip run: find out*/install/ -type f -perm -u=x -exec strip -x {} + @@ -105,6 +106,7 @@ jobs: SHASUM=$PKGNAME.tar.gz.sha256 rm -rf binaryen-$VERSION mv out-arm64/install binaryen-$VERSION + bash scripts/llgo-copy-notices.sh binaryen-$VERSION tar -czf $TARBALL binaryen-$VERSION # on Windows, MSYS2 will strip the carriage return from CMake output cmake -E sha256sum $TARBALL > $SHASUM