1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00

Add specific build for Android (#512)

Fixes #491
This commit is contained in:
young-zy 2020-12-14 01:48:06 +08:00 committed by GitHub
parent 166d1afee5
commit 3e9b74c234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -66,6 +66,10 @@ jobs:
- goos: linux
goarch: mips
# END MIPS
# BEGIN Android
- goos: android
goarch: arm64
# END Android
# END Other architectures
fail-fast: false

View File

@ -18,5 +18,6 @@
"openbsd-amd64": { "friendlyName": "openbsd-64" },
"windows-amd64": { "friendlyName": "windows-64" },
"windows-386": { "friendlyName": "windows-32" },
"windows-arm7": { "friendlyName": "windows-arm32-v7a" }
"windows-arm7": { "friendlyName": "windows-arm32-v7a" },
"android-arm64": { "friendlyName": "android-arm64-v8a" }
}