diff options
author | EuAndreh <eu@euandre.org> | 2021-06-07 22:10:37 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-07 22:10:39 -0300 |
commit | b681cf78bd1a20e25ccb8a4381ae470da6f0cc83 (patch) | |
tree | 78d701f49f25986ac856645d936e7c4d3f69e63b /aux/ci/git-pre-push.sh | |
parent | TODOs.md: Add #task-93510453-111f-9b1f-575f-ca8c7c05883c (diff) | |
download | euandre.org-b681cf78bd1a20e25ccb8a4381ae470da6f0cc83.tar.gz euandre.org-b681cf78bd1a20e25ccb8a4381ae470da6f0cc83.tar.xz |
Remove CI files under aux/: remove website from CI
Since I'm already only publishing from my local machine.
Diffstat (limited to '')
-rwxr-xr-x | aux/ci/git-pre-push.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/aux/ci/git-pre-push.sh b/aux/ci/git-pre-push.sh deleted file mode 100755 index e73b9b8..0000000 --- a/aux/ci/git-pre-push.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/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" - -DESCRIPTION="$(mktemp)" -if [ -f description ] -then - cp description "$DESCRIPTION" -else - git config euandreh.description > "$DESCRIPTION" -fi - -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" |