#!/bin/bash TAG_VERSION=$(git describe --tags --always --match "[0-9][0-9][0-9][0-9].*.*") OUT_VERSION=$(echo $TAG_VERSION | sed -E 's/([0-9]{4}\.[0-9]{1,2}\.[0-9]+-[0-9]+).*/\1/') echo $TAG_VERSION # Disable FIPS module in go-boring export GOEXPERIMENT=noboringcrypto export CGO_ENABLED=0 # This controls the directory the built artifacts go into export ARTIFACT_DIR=artifacts/ mkdir -p $ARTIFACT_DIR linuxArchs=("386" "amd64" "arm" "armhf" "arm64") export TARGET_OS=linux for arch in ${linuxArchs[@]}; do unset TARGET_ARM export TARGET_ARCH=$arch ## Support for arm platforms without hardware FPU enabled if [[ $arch == arm ]] ; then export TARGET_ARCH=arm export TARGET_ARM=5 fi ## Support for armhf builds if [[ $arch == armhf ]] ; then export TARGET_ARCH=arm export TARGET_ARM=7 fi make cloudflared-deb mv cloudflared\_$TAG_VERSION\_$arch.deb $ARTIFACT_DIR/cloudflared-$OUT_VERSION-linux-$arch.deb # rpm packages invert the - and _ and use x86_64 instead of amd64. RPMVERSION=$(echo $TAG_VERSION|sed -r 's/-/_/g') RPMARCH=$arch if [ $arch == "amd64" ];then RPMARCH="x86_64" fi if [ $arch == "arm64" ]; then RPMARCH="aarch64" fi make cloudflared-rpm mv cloudflared-$RPMVERSION-1.$RPMARCH.rpm $ARTIFACT_DIR/cloudflared-$OUT_VERSION-linux-$RPMARCH.rpm # finally move the linux binary as well. mv ./cloudflared $ARTIFACT_DIR/cloudflared-$OUT_VERSION-linux-$arch done