From ebb8fe0a230ceec38e5e23f1aa887dbb8dbb233e Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 29 Aug 2020 07:06:41 -0300 Subject: Add scripts/test-hook.sh --- scripts/test-hook.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 scripts/test-hook.sh (limited to 'scripts') diff --git a/scripts/test-hook.sh b/scripts/test-hook.sh new file mode 100755 index 0000000..0a561ae --- /dev/null +++ b/scripts/test-hook.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash +set -Eeuo pipefail + +WORK_TREE="$(mktemp -d)" +COMMIT="$(git rev-parse master)" +git --work-tree="$WORK_TREE" checkout -f master +cd "$WORK_TREE" + +LOGS_PREFIX="/data/static/ci-logs" +LOGS_DIR="${LOGS_PREFIX}/website" +mkdir -p "$LOGS_DIR" + +LOGFILE="${LOGS_DIR}/$(date -Is)-${COMMIT}.log" + +touch "${LOGFILE}" +"${LOGS_PREFIX}"/ci-gen-index.sh + +status() { + printf "\n\n>>> exit status was %s\n" "$1" >> "$LOGFILE" +} + +finish() { + status "$?" +} +trap finish EXIT + +nix-build -A test 2>&1 | tee "$LOGFILE" +status "$?" -- cgit v1.2.3