diff options
author | EuAndreh <eu@euandre.org> | 2021-06-11 23:37:59 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-11 23:37:59 -0300 |
commit | ab3ad8fca4ec645854a54a50de4ee21c8fd72978 (patch) | |
tree | d8910a95004c59c11a7f557379b0eb35284ea5ac /aux/ci/git-pre-push.sh | |
parent | servers/nixvps/configuration.nix: Use subfolders of the same domain over subd... (diff) | |
download | toph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.gz toph-ab3ad8fca4ec645854a54a50de4ee21c8fd72978.tar.xz |
aux/: Update files
Diffstat (limited to 'aux/ci/git-pre-push.sh')
-rwxr-xr-x | aux/ci/git-pre-push.sh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/aux/ci/git-pre-push.sh b/aux/ci/git-pre-push.sh index 5546cb2..e73b9b8 100755 --- a/aux/ci/git-pre-push.sh +++ b/aux/ci/git-pre-push.sh @@ -1,6 +1,8 @@ #!/bin/sh set -eux +TLD="$(cat aux/tld.txt)" + PACKAGE="$(basename "$PWD")" LOGS_DIR="/opt/ci/$PACKAGE/logs" REMOTE_GIT_DIR="/srv/git/$PACKAGE.git" @@ -8,12 +10,12 @@ REMOTE_GIT_DIR="/srv/git/$PACKAGE.git" DESCRIPTION="$(mktemp)" if [ -f description ] then - cp description "$DESCRIPTION" + cp description "$DESCRIPTION" else - git config euandreh.description > "$DESCRIPTION" + 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" +scp "$DESCRIPTION" "$TLD:$REMOTE_GIT_DIR/description" +ssh "$TLD" mkdir -p "$LOGS_DIR" +scp aux/ci/ci-build.sh "$TLD:$(dirname "$LOGS_DIR")/ci-build.sh" +scp aux/ci/git-post-receive.sh "$TLD:$REMOTE_GIT_DIR/hooks/post-receive" |