aboutsummaryrefslogtreecommitdiff
path: root/build-aux/ci/ci-build.sh
blob: 0b792dfe7ac8b55c333b12356079e94e3aeda455 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/sh
set -eux

PACKAGE="$1"
LOGS_DIR="$2"
read -r _ SHA _ # oldrev newrev refname
FILENAME="$(date -Is)-$SHA.log"
LOGFILE="$LOGS_DIR/$FILENAME"

{
  echo "Starting CI job at: $(date -Is)"

  finish() {
    STATUS="$?"
    printf "\n\n>>> exit status was %s\n" "$STATUS"
    echo "Finishing CI job at: $(date -Is)"
    cd -
    NOTE=$(cat <<EOF
See CI logs with:
  git notes --ref=refs/notes/ci-logs show $SHA
  git notes --ref=refs/notes/ci-data show $SHA
EOF
        )
    git notes --ref=refs/notes/ci-data add -f -m "$STATUS $FILENAME"
    git notes --ref=refs/notes/ci-logs add -f -F "$LOGFILE"
    git notes append -m "$NOTE"
    printf "\n>>>\n>>> CI logs added as Git note.\n>>>\n>>> Run status was %s" "$STATUS"
  }
  trap finish EXIT

  unset GIT_DIR
  CLONE="$(mktemp -d)"
  git clone . "$CLONE"
  cd "$CLONE"
  git config --global user.email git@euandre.org
  git config --global user.name 'EuAndreh CI'

  if [ -f build-aux/guix/with-container.sh ]; then
    RUNNER='./build-aux/guix/with-container.sh'
  else
    RUNNER='sh -c'
  fi

  if [ -f ./bootstrap ]; then
    COMMAND='./bootstrap && ./configure --enable-programmer-mode --enable-ci-mode && make clean all check distcheck public'
  else
    COMMAND='make clean check public'
  fi

  $RUNNER "$COMMAND"

  rsync -avzzP public/ "/srv/http/$PACKAGE/" --delete
} | tee "$LOGFILE" 2>&1