You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not fixed yet. In #3281, builds with PIE and without PIE have the same file name (v2ray-linux-64.zip, v2ray-linux-arm64-v8a.zip), only one of them will be uploaded.
related commit: 8191faa
v2ray-core/.github/workflows/release.yml
Lines 131 to 144 in cab66de
EXTRA_ARG
does not get passed togo build
. So it does not build with-buildmode=pie
.GOARCH='amd64' GOOS='linux' GOVERSION='go1.23.2', build v5.21.0 without
-buildmode=pie
:Without
-buildmode=pie
, the hash of the binary matches the one of v5.21.0 release.GOARCH='amd64' GOOS='linux' GOVERSION='go1.23.2', build v5.21.0 with
-buildmode=pie
:The text was updated successfully, but these errors were encountered: