forked from alemi/upub
ci: limit parallelism
This commit is contained in:
parent
e51aff88be
commit
c8267afb5f
1 changed files with 2 additions and 2 deletions
4
.tci
4
.tci
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "building release binary"
|
echo "building release binary"
|
||||||
cargo build --release --all-features -j 2 # vps we deploy on has 4 vcpus, don't hog them all!
|
cargo build --release --all-features -j 1 # limit memory usage
|
||||||
echo "stopping service"
|
echo "stopping service"
|
||||||
systemctl --user stop upub
|
systemctl --user stop upub
|
||||||
echo "installing new binary"
|
echo "installing new binary"
|
||||||
|
@ -12,7 +12,7 @@ echo "restarting service"
|
||||||
systemctl --user start upub
|
systemctl --user start upub
|
||||||
echo "rebuilding frontend"
|
echo "rebuilding frontend"
|
||||||
cd web
|
cd web
|
||||||
/opt/bin/trunk build --release --public-url 'https://feditest.alemi.dev/web'
|
/opt/bin/trunk build --release -j 1 --public-url 'https://feditest.alemi.dev/web'
|
||||||
echo "deploying frontend"
|
echo "deploying frontend"
|
||||||
rm /srv/http/feditest/web/*
|
rm /srv/http/feditest/web/*
|
||||||
mv ./dist/* /srv/http/feditest/web/
|
mv ./dist/* /srv/http/feditest/web/
|
||||||
|
|
Loading…
Reference in a new issue