Skip to content

Commit e24c1fd

Browse files
committed
support ppc64 releases
1 parent 598b4ee commit e24c1fd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

release/install-release.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ sysArch(){
107107
VDIS="mips"
108108
elif [[ "$ARCH" == *"s390x"* ]]; then
109109
VDIS="s390x"
110+
elif [[ "$ARCH" == "ppc64le" ]]; then
111+
VDIS="ppc64le"
112+
elif [[ "$ARCH" == "ppc64" ]]; then
113+
VDIS="ppc64"
110114
fi
111115
return 0
112116
}

release/release-ci.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ upload ${ART_ROOT}/v2ray-linux-mips64.zip
103103
upload ${ART_ROOT}/v2ray-linux-mips64le.zip
104104
upload ${ART_ROOT}/v2ray-linux-mips.zip
105105
upload ${ART_ROOT}/v2ray-linux-mipsle.zip
106+
upload ${ART_ROOT}/v2ray-linux-ppc64.zip
107+
upload ${ART_ROOT}/v2ray-linux-ppc64le.zip
106108
upload ${ART_ROOT}/v2ray-linux-s390x.zip
107109
upload ${ART_ROOT}/v2ray-freebsd-64.zip
108110
upload ${ART_ROOT}/v2ray-freebsd-32.zip

0 commit comments

Comments
 (0)