aboutsummaryrefslogtreecommitdiff
path: root/scripts/test-hook.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xscripts/test-hook.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/test-hook.sh b/scripts/test-hook.sh
deleted file mode 100755
index 64ca6b9..0000000
--- a/scripts/test-hook.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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
-
-finish() {
- printf "\n\n>>> exit status was %s\n" "$1" >> "$LOGFILE"
-}
-trap finish EXIT
-
-nix-build -A test 2>&1 | tee "$LOGFILE"