From 70eaf4d190ccf49345fb35f73bef84994e4f1ba2 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 10 Dec 2024 22:55:44 +0100 Subject: [PATCH] Build libsodium.dll with VC++ for win-arm64 Fixes #1431 --- .github/workflows/dotnet-core.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 382fbd0a..bc5b4257 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -28,6 +28,10 @@ jobs: with: name: build-win-x86 path: bin/Win32/Release/v143/dynamic/libsodium.dll + - uses: actions/upload-artifact@v4 + with: + name: build-win-arm64 + path: bin/ARM64/Release/v143/dynamic/libsodium.dll build-others: runs-on: ubuntu-latest @@ -38,14 +42,6 @@ jobs: version: master - uses: actions/checkout@v4 - - name: build-win-arm64 - run: | - rm -fr zig-out .zig-cache; zig build -Doptimize=ReleaseFast -Dtarget=aarch64-windows - - uses: actions/upload-artifact@v4 - with: - name: build-win-arm64 - path: zig-out/bin/libsodium.dll - - name: build-linux-x64 run: | rm -fr zig-out .zig-cache; zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-gnu.2.17