2019-03-01 15:37:43 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
function docker_cmd() {
|
|
|
|
DIST=$1
|
|
|
|
CMD=$2
|
2020-01-25 12:54:44 +00:00
|
|
|
mkdir -p $CACHE/$DIST/{target,registry,git,tmp}
|
2019-03-01 15:37:43 +00:00
|
|
|
docker run -it --rm -v $(pwd)/..:/home/user/code \
|
2020-01-25 12:54:44 +00:00
|
|
|
-v $CACHE/$DIST/target:/home/user/code/target \
|
|
|
|
-v $CACHE/$DIST/registry:/home/user/.cargo/registry \
|
|
|
|
-v $CACHE/$DIST/git:/home/user/.cargo/git \
|
|
|
|
-v $CACHE/$DIST/tmp:/home/user/.cargo/tmp \
|
2019-03-01 15:37:43 +00:00
|
|
|
vpncloud-builder-$DIST bash -c "$CMD"
|
|
|
|
}
|
|
|
|
|
2021-02-22 15:19:19 +00:00
|
|
|
# docker run -it --rm -v $(pwd)/..:/home/user/code -v $(pwd)/cache/rpm/target:/home/user/code/target -v $(pwd)/cache/rpm/registry:/home/user/code/registry -v $(pwd)/cache/rpm/git:/home/user/code/git -v $(pwd)/cache/rpm/tmp:/home/user/code/tmp vpncloud-builder-rpm
|
|
|
|
|
2019-03-01 15:37:43 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
cd $(dirname $0)
|
|
|
|
|
2021-02-22 15:19:19 +00:00
|
|
|
TOOLCHAIN=$(grep -e '^toolchain =' ../Cargo.toml | sed -e 's/toolchain = "\(.*\)"/\1/')
|
|
|
|
UPX_VERSION=$(grep -e '^upx_version =' ../Cargo.toml | sed -e 's/upx_version = "\(.*\)"/\1/')
|
|
|
|
|
2019-03-01 15:37:43 +00:00
|
|
|
VERSION=$(grep -e '^version =' ../Cargo.toml | sed -e 's/version = "\(.*\)"/\1/')
|
2020-10-09 20:46:44 +00:00
|
|
|
DEB_VERSION=$(echo "$VERSION" | sed -e 's/-/~/g')
|
|
|
|
if echo "$VERSION" | fgrep -q "-"; then
|
|
|
|
RPM_VERSION=$(echo "$VERSION" | sed -e 's/-/-0./g')
|
|
|
|
else
|
|
|
|
RPM_VERSION="$VERSION-1"
|
|
|
|
fi
|
2019-03-01 15:37:43 +00:00
|
|
|
|
2021-02-22 15:19:19 +00:00
|
|
|
mkdir -p cache/{rpm,deb,musl}
|
2019-03-01 15:37:43 +00:00
|
|
|
CACHE=$(pwd)/cache
|
|
|
|
|
|
|
|
mkdir -p ../dist
|
|
|
|
|
2021-02-22 15:19:19 +00:00
|
|
|
docker build --rm -f=Dockerfile-deb --build-arg TOOLCHAIN=$TOOLCHAIN --build-arg UPX_VERSION=$UPX_VERSION -t vpncloud-builder-deb .
|
2019-03-01 15:37:43 +00:00
|
|
|
|
|
|
|
# x86_64 deb
|
2021-02-14 12:27:26 +00:00
|
|
|
if ! [ -f ../dist/vpncloud_${DEB_VERSION}_amd64.deb ]; then
|
|
|
|
docker_cmd deb 'cd code && cargo deb'
|
|
|
|
cp $CACHE/deb/target/debian/vpncloud_${DEB_VERSION}_amd64.deb ../dist/vpncloud_${DEB_VERSION}_amd64.deb
|
|
|
|
fi
|
|
|
|
|
|
|
|
build_deb() {
|
|
|
|
ARCH=$1
|
|
|
|
TARGET=$2
|
|
|
|
if ! [ -f ../dist/vpncloud_${DEB_VERSION}_${ARCH}.deb ]; then
|
|
|
|
docker_cmd deb "cd code && cargo deb --target ${TARGET}"
|
|
|
|
cp $CACHE/deb/target/${TARGET}/debian/vpncloud_${DEB_VERSION}_${ARCH}.deb ../dist/vpncloud_${DEB_VERSION}_${ARCH}.deb
|
|
|
|
fi
|
|
|
|
}
|
2019-03-01 15:37:43 +00:00
|
|
|
|
2021-02-14 12:27:26 +00:00
|
|
|
build_deb i386 i686-unknown-linux-gnu
|
|
|
|
build_deb armhf armv7-unknown-linux-gnueabihf
|
2021-12-17 11:11:32 +00:00
|
|
|
build_deb armel armv5te-unknown-linux-gnueabi
|
2021-02-14 12:27:26 +00:00
|
|
|
build_deb arm64 aarch64-unknown-linux-gnu
|
2020-02-20 21:52:40 +00:00
|
|
|
|
2019-03-02 00:12:42 +00:00
|
|
|
|
2021-02-22 15:19:19 +00:00
|
|
|
docker build --rm -f=Dockerfile-musl -t vpncloud-builder-musl .
|
|
|
|
|
2021-02-14 12:27:26 +00:00
|
|
|
build_static() {
|
|
|
|
ARCH=$1
|
|
|
|
TARGET=$2
|
|
|
|
if ! [ -f ../dist/vpncloud_${VERSION}_static_${ARCH} ]; then
|
2021-02-22 15:19:19 +00:00
|
|
|
docker_cmd musl "cd code && cargo build --release --features installer --target ${TARGET} && upx --lzma target/${TARGET}/release/vpncloud"
|
|
|
|
cp $CACHE/musl/target/${TARGET}/release/vpncloud ../dist/vpncloud_${VERSION}_static_${ARCH}
|
2021-02-14 12:27:26 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
build_static amd64 x86_64-unknown-linux-musl
|
2021-02-22 15:19:19 +00:00
|
|
|
#build_static i386 i686-unknown-linux-musl
|
2021-12-17 11:11:32 +00:00
|
|
|
build_static armel armv5te-unknown-linux-musleabi
|
2021-02-14 12:27:26 +00:00
|
|
|
build_static armhf armv7-unknown-linux-musleabihf
|
2021-02-22 15:19:19 +00:00
|
|
|
build_static arm64 aarch64-unknown-linux-musl
|
2020-01-24 13:26:23 +00:00
|
|
|
|
2019-03-02 00:12:42 +00:00
|
|
|
|
|
|
|
docker build --rm -f=Dockerfile-rpm -t vpncloud-builder-rpm .
|
|
|
|
|
2021-02-14 12:27:26 +00:00
|
|
|
if ! [ -f ../dist/vpncloud_${RPM_VERSION}.x86_64.rpm ]; then
|
|
|
|
# x86_64 rpm
|
|
|
|
docker_cmd rpm 'cd code && cargo rpm build'
|
|
|
|
cp $CACHE/rpm/target/release/rpmbuild/RPMS/x86_64/vpncloud-${RPM_VERSION}.x86_64.rpm ../dist/vpncloud_${RPM_VERSION}.x86_64.rpm
|
2021-02-22 15:19:19 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
build_rpm() {
|
|
|
|
ARCH=$1
|
|
|
|
TARGET=$2
|
|
|
|
if ! [ -f ../dist/vpncloud_${RPM_VERSION}.${ARCH}.rpm ]; then
|
|
|
|
mkdir -p $CACHE/rpm/target
|
|
|
|
[ -L $CACHE/rpm/target/assets ] || ln -s ../assets $CACHE/rpm/target/assets
|
|
|
|
[ -L $CACHE/rpm/target/target ] || ln -s ../target $CACHE/rpm/target/target
|
|
|
|
docker_cmd rpm "cd code && cargo rpm build --target ${TARGET}"
|
|
|
|
cp $CACHE/rpm/target/${TARGET}/release/rpmbuild/RPMS/${ARCH}/vpncloud-${RPM_VERSION}.${ARCH}.rpm ../dist/vpncloud_${RPM_VERSION}.${ARCH}.rpm
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
build_rpm i686 i686-unknown-linux-gnu
|