From c8267afb5fc73e848ab19c57080773ee411e96f6 Mon Sep 17 00:00:00 2001 From: alemi Date: Sun, 14 Apr 2024 17:23:40 +0200 Subject: [PATCH] ci: limit parallelism --- .tci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tci b/.tci index d0a2a8e..ea7eb76 100755 --- a/.tci +++ b/.tci @@ -1,7 +1,7 @@ #!/bin/bash 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" systemctl --user stop upub echo "installing new binary" @@ -12,7 +12,7 @@ echo "restarting service" systemctl --user start upub echo "rebuilding frontend" 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" rm /srv/http/feditest/web/* mv ./dist/* /srv/http/feditest/web/