aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-03-06 16:12:59 -0300
committerEuAndreh <eu@euandre.org>2021-03-06 16:12:59 -0300
commit12ce4534b1fbb75804271ba136a8600dab071b70 (patch)
tree68006ea5c26bd7e4a98105015691d6091a143a82
parentnixvps/configuration.nix: Enable subdomain for gluilo (diff)
downloadtoph-12ce4534b1fbb75804271ba136a8600dab071b70.tar.gz
toph-12ce4534b1fbb75804271ba136a8600dab071b70.tar.xz
Update files under aux/
-rwxr-xr-xaux/ci/git-pre-push.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/aux/ci/git-pre-push.sh b/aux/ci/git-pre-push.sh
index 951d353..5546cb2 100755
--- a/aux/ci/git-pre-push.sh
+++ b/aux/ci/git-pre-push.sh
@@ -5,6 +5,15 @@ PACKAGE="$(basename "$PWD")"
LOGS_DIR="/opt/ci/$PACKAGE/logs"
REMOTE_GIT_DIR="/srv/git/$PACKAGE.git"
+DESCRIPTION="$(mktemp)"
+if [ -f description ]
+then
+ cp description "$DESCRIPTION"
+else
+ git config euandreh.description > "$DESCRIPTION"
+fi
+
+scp "$DESCRIPTION" "git.euandreh.xyz:$REMOTE_GIT_DIR/description"
ssh git.euandreh.xyz mkdir -p "$LOGS_DIR"
scp aux/ci/ci-build.sh "git.euandreh.xyz:$(dirname "$LOGS_DIR")/ci-build.sh"
scp aux/ci/git-post-receive.sh "git.euandreh.xyz:$REMOTE_GIT_DIR/hooks/post-receive"