From 8da88f8c86712fb835992279148a616fd95931c0 Mon Sep 17 00:00:00 2001 From: Dylan Freedman Date: Mon, 22 Nov 2021 15:58:55 -0500 Subject: [PATCH] fix: remove linux and windows aarch64 versions (not working yet) --- .github/workflows/release.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a526394..ab8e836 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,17 +22,12 @@ jobs: - run: zig build - run: zip -j fastfec-linux-x86_64-${{ steps.get_version.outputs.VERSION }}.zip zig-out/bin/fastfec - run: mv zig-out/lib/libfastfec.so libfastfec-linux-x86_64-${{ steps.get_version.outputs.VERSION }}.so - - run: zig build -Dtarget=aarch64-linux - - run: zip -j fastfec-linux-aarch64-${{ steps.get_version.outputs.VERSION }}.zip zig-out/bin/fastfec - - run: mv zig-out/lib/libfastfec.so libfastfec-linux-aarch64-${{ steps.get_version.outputs.VERSION }}.so - name: Release uses: softprops/action-gh-release@v1 with: files: | fastfec-linux-x86_64-${{ steps.get_version.outputs.VERSION }}.zip - fastfec-linux-aarch64-${{ steps.get_version.outputs.VERSION }}.zip libfastfec-linux-x86_64-${{ steps.get_version.outputs.VERSION }}.so - libfastfec-linux-aarch64-${{ steps.get_version.outputs.VERSION }}.so build-macos: if: github.event.base_ref == 'refs/heads/main' runs-on: macos-latest @@ -80,15 +75,9 @@ jobs: - run: Compress-Archive zig-out/bin/fastfec.exe fastfec-windows-x86_64-${{ steps.get_version.outputs.VERSION }}.zip - run: mv zig-out/lib/fastfec.dll libfastfec-windows-x86_64-${{ steps.get_version.outputs.VERSION }}.dll shell: bash - - run: zig build --search-prefix C:/vcpkg/packages/curl_x64-windows-static --search-prefix C:/vcpkg/packages/pcre_x64-windows-static --search-prefix C:/vcpkg/packages/zlib_x64-windows-static -Dtarget=aarch64-windows-msvc - - run: Compress-Archive zig-out/bin/fastfec.exe fastfec-windows-aarch64-${{ steps.get_version.outputs.VERSION }}.zip - - run: mv zig-out/lib/fastfec.dll libfastfec-windows-aarch64-${{ steps.get_version.outputs.VERSION }}.dll - shell: bash - name: Release uses: softprops/action-gh-release@v1 with: files: | fastfec-windows-x86_64-${{ steps.get_version.outputs.VERSION }}.zip - fastfec-windows-aarch64-${{ steps.get_version.outputs.VERSION }}.zip libfastfec-windows-x86_64-${{ steps.get_version.outputs.VERSION }}.dll - libfastfec-windows-aarch64-${{ steps.get_version.outputs.VERSION }}.dll