Skip to content

Commit

Permalink
fix: remove linux and windows aarch64 versions (not working yet)
Browse files Browse the repository at this point in the history
  • Loading branch information
freedmand committed Nov 22, 2021
1 parent fb8cc9b commit 8da88f8
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 8da88f8

Please sign in to comment.