aboutsummaryrefslogblamecommitdiff
path: root/aux/ci/git-pre-push.sh
blob: 5546cb2ed22d6caeba4be2ac56f7c007152a7b39 (plain) (tree)
1
2
3
4
5
6



                            
                                
                                      










                                                                 

                                                                                    
#!/bin/sh
set -eux

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"