We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9ec183 commit fac9dfbCopy full SHA for fac9dfb
build-packages.sh
@@ -15,7 +15,7 @@ done
15
16
17
export FIPS=true
18
-linuxArchs=("amd64" "386" "arm")
+linuxArchs=("amd64" "386" "arm" "arm64")
19
export TARGET_OS=linux
20
for arch in ${linuxArchs[@]}; do
21
export TARGET_ARCH=$arch
@@ -28,6 +28,9 @@ for arch in ${linuxArchs[@]}; do
28
if [ $arch == "amd64" ];then
29
RPMARCH="x86_64"
30
fi
31
+ if [ $arch == "arm64" ]; then
32
+ RPMARCH="aarch64"
33
+ fi
34
make cloudflared-rpm
35
mv cloudflared-$RPMVERSION-1.$RPMARCH.rpm $ARTIFACT_DIR/cloudflared-linux-$RPMARCH.rpm
36
0 commit comments