Skip to content

Commit

Permalink
Possibly fix Windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
OoLunar committed Mar 22, 2024
1 parent f2985d5 commit 75576fa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/sodium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- {
name: "Android Arm64",
os: ubuntu-latest,
command: "./dist-build/android-armv8-a.sh && ls -lsah libsodium-android-armv8-a+crypto/lib",
command: "./dist-build/android-armv8-a.sh",
output-file: "libsodium-android-armv8-a+crypto/lib/libsodium.so",
file: "libsodium.so",
rid: "android-arm64",
Expand Down Expand Up @@ -80,26 +80,26 @@ jobs:
- {
name: "Windows x86",
os: windows-latest,
command: "zig build -Dshared=true -Doptimize=ReleaseFast -Dtarget=x86-windows-gnu",
output-file: "zig-out/lib/libsodium_shared.dll",
command: "cd builds/msvc/build/ && cmd buildbase.bat ../vs2022/libsodium.sln 17 && cd ../../..",
output-file: "bin/Win32/Release/v143/dynamic/libsodium.dll",
file: "sodium.dll",
rid: "win-x86",
arch: "x86"
}
- {
name: "Windows x64",
os: windows-latest,
command: "zig build -Dshared=true -Doptimize=ReleaseFast -Dtarget=x86_64-windows-gnu",
output-file: "zig-out/lib/libsodium_shared.dll",
command: "cd builds/msvc/build/ && cmd buildbase.bat ../vs2022/libsodium.sln 17 && cd ../../..",
output-file: "bin/x64/Release/v143/dynamic/libsodium.dll",
file: "sodium.dll",
rid: "win-x64",
arch: "x64"
}
- {
name: "Windows Arm64",
os: windows-latest,
command: "zig build -Dshared=true -Doptimize=ReleaseFast -Dtarget=aarch64-windows-gnu",
output-file: "zig-out/lib/libsodium_shared.dll",
command: "cd builds/msvc/build/ && cmd buildbase.bat ../vs2022/libsodium.sln 17 && cd ../../..",
output-file: "bin/arm64/Release/v143/dynamic/libsodium.dll",
file: "sodium.dll",
rid: "win-arm64",
arch: "arm64"
Expand Down

0 comments on commit 75576fa

Please sign in to comment.