v2ray: Add arm64 build (#4407)

* v2ray: add arm64 build

* v2ray: Fix hash regex

---------

Co-authored-by: Markson <markson@2333ma.top>
This commit is contained in:
Markson Hon 2023-02-01 20:11:21 +08:00 committed by GitHub
parent 85867b0cd9
commit c27b712bfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,10 @@
"32bit": { "32bit": {
"url": "https://github.com/v2fly/v2ray-core/releases/download/v5.2.1/v2ray-windows-32.zip", "url": "https://github.com/v2fly/v2ray-core/releases/download/v5.2.1/v2ray-windows-32.zip",
"hash": "dc9f37dbeb32221e62b9a52b79f1842a217f049675872b334e1e5fd96121d0d2" "hash": "dc9f37dbeb32221e62b9a52b79f1842a217f049675872b334e1e5fd96121d0d2"
},
"arm64": {
"url": "https://github.com/v2fly/v2ray-core/releases/download/v5.2.1/v2ray-windows-arm64-v8a.zip",
"hash": "4b72b11f350a4a8db180b02f4eb6c8b2c757defbfa1e9177b3d56034c108ee2d"
} }
}, },
"bin": "v2ray.exe", "bin": "v2ray.exe",
@ -25,11 +29,14 @@
}, },
"32bit": { "32bit": {
"url": "https://github.com/v2fly/v2ray-core/releases/download/v$version/v2ray-windows-32.zip" "url": "https://github.com/v2fly/v2ray-core/releases/download/v$version/v2ray-windows-32.zip"
},
"arm64": {
"url": "https://github.com/v2fly/v2ray-core/releases/download/v$version/v2ray-windows-arm64-v8a.zip"
} }
}, },
"hash": { "hash": {
"url": "$url.dgst", "url": "$url.dgst",
"regex": "SHA512= $sha512" "regex": "SHA2-256= $sha256"
} }
} }
} }