blob: d90a4b4769a0d21ac7eb9cd81948cc3bd52b0a97 (
plain) (
tree)
|
|
#!/bin/sh
set -eux
PACKAGE="$(basename "$PWD")"
LOGS_DIR="/srv/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"
|