lemmy/docker/dev/deploy.sh

78 lines
2.3 KiB
Bash
Raw Normal View History

2019-08-25 17:57:05 +00:00
#!/bin/sh
git checkout master
# Import translations
wget "https://weblate.yerbamate.dev/download/lemmy/lemmy/?format=zip" -O /tmp/lemmy_l10n.zip
unzip -j -o /tmp/lemmy_l10n.zip -d ui/translations/
rm /tmp/lemmy_l10n.zip
2019-08-25 17:57:05 +00:00
# Creating the new tag
new_tag="$1"
third_semver=$(echo $new_tag | cut -d "." -f 3)
2019-08-25 17:57:05 +00:00
# Setting the version on the front end
cd ../../
echo "export const version: string = '$new_tag';" > "ui/src/version.ts"
2019-11-15 02:08:25 +00:00
git add "ui/src/version.ts"
# Setting the version on the backend
echo "pub const VERSION: &str = \"$new_tag\";" > "server/src/version.rs"
2019-11-15 02:08:25 +00:00
git add "server/src/version.rs"
2020-01-31 11:03:26 +00:00
# Setting the version for Ansible
$new_tag > "ansible/VERSION"
2020-01-31 11:03:26 +00:00
git add "ansible/VERSION"
2019-08-25 17:57:05 +00:00
cd docker/dev || exit
2019-08-25 17:57:05 +00:00
# Changing the docker-compose prod
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../prod/docker-compose.yml
2020-02-02 22:13:59 +00:00
sed -i "s/dessalines\/lemmy:.*/dessalines\/lemmy:$new_tag/" ../../ansible/templates/docker-compose.yml
2019-08-25 17:57:05 +00:00
git add ../prod/docker-compose.yml
2020-02-02 22:13:59 +00:00
git add ../../ansible/templates/docker-compose.yml
2019-08-25 17:57:05 +00:00
# The commit
2019-10-15 23:50:00 +00:00
git commit -m"Version $new_tag"
git tag $new_tag
2019-08-25 17:57:05 +00:00
# Rebuilding docker
2019-09-08 16:21:52 +00:00
docker-compose build
2019-11-01 03:03:43 +00:00
docker tag dev_lemmy:latest dessalines/lemmy:x64-$new_tag
docker push dessalines/lemmy:x64-$new_tag
# Build for Raspberry Pi / other archs
# Arm currently not working
# docker build -t lemmy:armv7hf -f Dockerfile.armv7hf ../../
# docker tag lemmy:armv7hf dessalines/lemmy:armv7hf-$new_tag
# docker push dessalines/lemmy:armv7hf-$new_tag
# aarch64
# Only do this on major releases (IE the third semver is 0)
if [ $third_semver -eq 0 ]; then
2020-01-20 19:39:41 +00:00
# Registering qemu binaries
docker run --rm --privileged multiarch/qemu-user-static:register --reset
docker build -t lemmy:aarch64 -f Dockerfile.aarch64 ../../
docker tag lemmy:aarch64 dessalines/lemmy:arm64-$new_tag
docker push dessalines/lemmy:arm64-$new_tag
fi
2019-11-01 03:03:43 +00:00
# Creating the manifest for the multi-arch build
if [ $third_semver -eq 0 ]; then
docker manifest create dessalines/lemmy:$new_tag \
2019-11-01 03:03:43 +00:00
dessalines/lemmy:x64-$new_tag \
dessalines/lemmy:arm64-$new_tag
else
docker manifest create dessalines/lemmy:$new_tag \
dessalines/lemmy:x64-$new_tag
fi
2019-11-01 03:03:43 +00:00
docker manifest push dessalines/lemmy:$new_tag
2019-11-23 00:17:20 +00:00
# Push
git push origin $new_tag
git push
# Pushing to any ansible deploys
cd ../../ansible || exit
ansible-playbook lemmy.yml --become