blob: 2d2bcb1a34ce212db645ec2a5d4cb469ce97af7b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
set -eux
PACKAGE="$(basename "$PWD")"
LOGS_DIR="/data/ci/$PACKAGE/logs"
REMOTE_GIT_DIR="/data/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 build-aux/ci/ci-build.sh "git.euandreh.xyz:$(dirname "$LOGS_DIR")/ci-build.sh"
scp build-aux/ci/git-post-receive.sh "git.euandreh.xyz:$REMOTE_GIT_DIR/hooks/post-receive"
|