We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c92a59 commit 02397c2Copy full SHA for 02397c2
1 file changed
.github/workflows/ci.yml
@@ -666,11 +666,9 @@ jobs:
666
667
668
- name: Enable mlock for production
669
- # arm64 is excluded: libsodium cross-compilation is not supported in the cbake sysroot.
670
- # arm64 production builds will emit a startup warning about missing mlock protection.
671
# On Linux, libsodium-dev is installed in the configure steps above (apt-get).
672
# On Windows, libsodium is installed here via vcpkg (deferred to production to avoid slow builds on PRs).
673
- if: ${{ needs.preflight.outputs.rust-profile == 'production' && matrix.arch != 'arm64' }}
+ if: ${{ needs.preflight.outputs.rust-profile == 'production' }}
674
run: |
675
if ($Env:RUNNER_OS -eq "Windows") {
676
# Install libsodium via vcpkg for the mlock feature (requires static library)
0 commit comments